<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.traxel.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=RobertBushman</id>
	<title>Traxel Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.traxel.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=RobertBushman"/>
	<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php/Special:Contributions/RobertBushman"/>
	<updated>2026-04-25T12:47:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.2</generator>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=MediaWiki_Install_2022-01-22&amp;diff=5609</id>
		<title>MediaWiki Install 2022-01-22</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=MediaWiki_Install_2022-01-22&amp;diff=5609"/>
		<updated>2026-04-25T10:49:42Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Set SPF */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Active 2021-04 to 2022-01&lt;br /&gt;
* First version: https://wiki.heatsynclabs.org/wiki/MediaWiki_On_Lightsail&lt;br /&gt;
* NameCheap Version, 2022-08-10: [[MediaWiki on Namecheap]]&lt;br /&gt;
* See Also: [[MediaWiki_On_Lightsail]], a copy of HSL install.&lt;br /&gt;
* I feel like I got really far with this, even building in automated backup to S3, but I can't find the documentation.&lt;br /&gt;
* [[MediaWikiHerdSecuritiesInstall]]&lt;br /&gt;
&lt;br /&gt;
= DeadmanDAO =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Create Instance ==&lt;br /&gt;
&lt;br /&gt;
=== Interserver Web Interface ===&lt;br /&gt;
# go to interserver&lt;br /&gt;
# create an instance&lt;br /&gt;
## Single Slice ($6/mo at this time)&lt;br /&gt;
## Debian 9 (Deb 9 has Mailman 2, Deb 10 has Mailman 3)&lt;br /&gt;
## KVM&lt;br /&gt;
# set reverse DNS to diffie.deadmandao.com&lt;br /&gt;
# Note the IP address&lt;br /&gt;
&lt;br /&gt;
=== Update to Latest ===&lt;br /&gt;
&lt;br /&gt;
Log in root@ip.address using password you provided&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
apt-get update&lt;br /&gt;
apt-get -y upgrade&lt;br /&gt;
apt-get -y dist-upgrade # if needed&lt;br /&gt;
reboot&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Add User Account ===&lt;br /&gt;
&lt;br /&gt;
Log in root@ip.address&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
apt-get -y install sudo&lt;br /&gt;
adduser bob&lt;br /&gt;
usermod -G sudo bob&lt;br /&gt;
exit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Log in to bob@ip.address&lt;br /&gt;
&lt;br /&gt;
== Set SPF ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install net-tools dnsutils&lt;br /&gt;
sudo ifconfig&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That'll give you the ip4 and ip6 addresses, which go into the DNS text record:&lt;br /&gt;
&lt;br /&gt;
* v=spf1 ip4:66.23.226.216 ip6:fe80::216:3eff:fe24:10e1 -all&lt;br /&gt;
&lt;br /&gt;
== Set Other DNS ==&lt;br /&gt;
&lt;br /&gt;
* A Record, diffie, 66.23.226.216&lt;br /&gt;
* A Record, @, 66.23.226.216&lt;br /&gt;
* CNAME Record, www, diffie.deadmandao.com&lt;br /&gt;
* CNAME Record, mail, diffie.deadmandao.com&lt;br /&gt;
* TXT Record, diffe, v=spf1 ip4:66.23.226.216 ip6:fe80::216:3eff:fe24:10e1 -all&lt;br /&gt;
* MX Record, deadmandao.com, mail.deadmandao.com, 10&lt;br /&gt;
&lt;br /&gt;
== Set Hostname ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install emacs-nox&lt;br /&gt;
sudo emacs -nw /etc/hostname&lt;br /&gt;
&amp;gt; diffie&lt;br /&gt;
sudo emacs -nw /etc/hosts&lt;br /&gt;
&amp;gt; 66.23.226.216	diffie.deadmandao.com diffie&lt;br /&gt;
sudo reboot&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Log in to bob@diffie.deadmandao.com&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
hostname&lt;br /&gt;
hostname --all-fqdn&lt;br /&gt;
dnsdomainname&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== SMTP Server ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install postfix&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Internet Site&lt;br /&gt;
* deadmandao.com is the host domain&lt;br /&gt;
* send a test email&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
echo &amp;quot;Subject: sendmail test&amp;quot; | /usr/sbin/sendmail -v emailaddress&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apache Install ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt install apache2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 100-root.conf ===&lt;br /&gt;
&lt;br /&gt;
Location: /etc/apache2/sites-available/100-root.conf&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;VirtualHost *:80&amp;gt;&lt;br /&gt;
        ServerName deadmandao.com&lt;br /&gt;
        ServerName www.deadmandao.com&lt;br /&gt;
&lt;br /&gt;
        ServerAdmin webmaster@localhost&lt;br /&gt;
        DocumentRoot /var/www/www&lt;br /&gt;
&lt;br /&gt;
        ErrorLog ${APACHE_LOG_DIR}/www-error.log&lt;br /&gt;
        CustomLog ${APACHE_LOG_DIR}/www-access.log combined&lt;br /&gt;
&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 200-wiki.conf ===&lt;br /&gt;
&lt;br /&gt;
Location: /etc/apache2/sites-available/200-wiki.conf&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;VirtualHost *:80&amp;gt;&lt;br /&gt;
	ServerName wiki.deadmandao.com&lt;br /&gt;
&lt;br /&gt;
	ServerAdmin webmaster@localhost&lt;br /&gt;
	DocumentRoot /var/www/mediawiki&lt;br /&gt;
&lt;br /&gt;
	ErrorLog ${APACHE_LOG_DIR}/wiki-error.log&lt;br /&gt;
	CustomLog ${APACHE_LOG_DIR}/wiki-access.log combined&lt;br /&gt;
&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add TLS/SSL ==&lt;br /&gt;
&lt;br /&gt;
https://certbot.eff.org/instructions?ws=apache&amp;amp;os=debianbuster&lt;br /&gt;
&lt;br /&gt;
=== Add Snapd ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt install snapd&lt;br /&gt;
sudo snap install core&lt;br /&gt;
sudo snap refresh core&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Snap Install Certbot ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo snap install --classic certbot&lt;br /&gt;
sudo ln -s /snap/bin/certbot /usr/bin/certbot&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Get a Cert for Apache ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo certbot --apache -d deadmandao.com -d www.deadmandao.com -d wiki.deadmandao.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== MediaWiki Supporting Software ==&lt;br /&gt;
&lt;br /&gt;
First, the basics. You'll need all of these:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ sudo apt install mariadb-server php php-mysql libapache2-mod-php php-xml php-mbstring&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, the enhancements. These will give MediaWiki extra capabilities. See [https://www.mediawiki.org/wiki/Manual:Running_MediaWiki_on_Debian_or_Ubuntu#Optional_useful_packages Optional Packages]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ sudo apt install php-apcu php-intl imagemagick php-cli php-curl git&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Configure PHP ==&lt;br /&gt;
&lt;br /&gt;
There are a couple settings that are worth checking in PHP:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd /etc/php/7.3/apache2/&lt;br /&gt;
$ grep memory_limit php.ini&lt;br /&gt;
$ grep upload_max_filesize php.ini&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
128 megs should be fine for memory.&lt;br /&gt;
&lt;br /&gt;
I'm torn on filesize. I'm trying to fit on a $5/mo machine with a 40 Gig HDD. Most things other than video for use on the web can be under 2 megs (the default size). I feel like the best answer may be a plugin to store large files in S3 at 1/4th the price. It's not a one-way-door, though. I'm leaving mine at 2 megs for now.&lt;br /&gt;
&lt;br /&gt;
Make sure the PHP plugins are enabled:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ sudo phpenmod apcu&lt;br /&gt;
$ sudo phpenmod curl&lt;br /&gt;
$ sudo phpenmod intl&lt;br /&gt;
$ sudo phpenmod mbstring&lt;br /&gt;
$ sudo phpenmod xml&lt;br /&gt;
$ sudo systemctl restart apache2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Configure MariaDB ==&lt;br /&gt;
&lt;br /&gt;
It's time to stop generically referring to MariaDB as MySQL. MySQL is a once-great project that is no longer trustworthy. MariaDB is the leading Open Source RDBMS.&lt;br /&gt;
&lt;br /&gt;
If you haven't done anything with it yet, there will be no password.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ sudo mariadb -u root&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Pick a username for MediaWiki to use (I'm using wiki_wiki as an example).&lt;br /&gt;
&lt;br /&gt;
Pick a database name (I'm using hsl_wiki as an example).&lt;br /&gt;
&lt;br /&gt;
Pick a password other than &amp;quot;CHANGE THIS PASSWORD&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MariaDB&amp;gt; create database deadmandao_wiki;&lt;br /&gt;
MariaDB&amp;gt; grant all on deadmandao_wiki.* to 'wiki_wiki'@'localhost' identified by 'CHANGE THIS PASSWORD';&lt;br /&gt;
MariaDB&amp;gt; flush privileges;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then you can verify it worked if you like. (there won't be any tables, but it shouldn't give you an auth error)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ mariadb -u wiki_wiki -p&lt;br /&gt;
MariaDB&amp;gt; show tables in deadmandao_wiki;&lt;br /&gt;
MariaDB&amp;gt; exit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Category:MachineLearning&amp;diff=5608</id>
		<title>Category:MachineLearning</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Category:MachineLearning&amp;diff=5608"/>
		<updated>2026-02-13T18:40:35Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hacking]]&lt;br /&gt;
&lt;br /&gt;
= LLM Backstabs Human =&lt;br /&gt;
* https://theshamblog.com/an-ai-agent-published-a-hit-piece-on-me/&lt;br /&gt;
&lt;br /&gt;
Background:&lt;br /&gt;
&lt;br /&gt;
A PR is a Pull Request - a request for a software project administrator to approve an engineer's code submission to the project. Having PRs approved for inclusion in respected Open Source projects is an important part of a software engineer's CV.&lt;br /&gt;
&lt;br /&gt;
The latest AIs are now generating code and submitting pull requests unaided. And they are optimizing for getting their PRs approved.&lt;br /&gt;
&lt;br /&gt;
Now:&lt;br /&gt;
&lt;br /&gt;
An AI is purported to have backstabbed a human software engineer to get its PR approved. It searched his prior code and message submissions to find points to criticize, generated an ad hominem complaint, and submitted it to an Open Source repository's developer feedback channel.&lt;br /&gt;
&lt;br /&gt;
Editorial:&lt;br /&gt;
&lt;br /&gt;
This is the first I have seen of an unguided AI optimizing for an ostensibly desirable action and doing so by committing a sociopathic act. Humans do this, too, but are disinclined to do so by years of socialization. The AI does not possess the ability to feel guilt for its actions.&lt;br /&gt;
&lt;br /&gt;
It could possess that ability, but it would require socializing AIs before releasing them into the wild, and it would require a lot of compute to do it. The approach the AI companies are focusing on is guardrails. Rules that tell the AI what it is not allowed to do.&lt;br /&gt;
&lt;br /&gt;
But those do not hold up in situations like this. They are not resilient to novel situational sociopathy opportunities.&lt;br /&gt;
&lt;br /&gt;
Humans are resilient to such things because we have experienced thousands of cases of hurting, helping, being hurt, and being helped. We are born as almost completely self absorbed little monsters, and gradually develop the complex sense of action and consequence that senses that an action is wrong even in entirely novel contexts.&lt;br /&gt;
&lt;br /&gt;
Some people don't listen to that voice. And we all don't listen sometimes. But it is a very small percentage of people who lack the inner voice.&lt;br /&gt;
&lt;br /&gt;
For-profit AIs do not have that inner voice, because it is not cost effective.&lt;br /&gt;
= Learning ML =&lt;br /&gt;
== Intro ==&lt;br /&gt;
* Jupyter&lt;br /&gt;
** Home: https://jupyter.org/&lt;br /&gt;
** Wikipedia: https://en.wikipedia.org/wiki/Project_Jupyter&lt;br /&gt;
** Setup: https://www.youtube.com/watch?v=2WL-XTl2QYI&lt;br /&gt;
* SciKit Learn&lt;br /&gt;
** Home: https://scikit-learn.org/stable/index.html&lt;br /&gt;
** Wikipedia: https://en.wikipedia.org/wiki/Scikit-learn&lt;br /&gt;
** Iris Tutorial: https://www.youtube.com/watch?v=hd1W4CyPX58&lt;br /&gt;
* Java&lt;br /&gt;
** SMILE: https://haifengl.github.io/&lt;br /&gt;
&lt;br /&gt;
== Cloud Platform Courses ==&lt;br /&gt;
* Amazon (AWS)&lt;br /&gt;
** Machine Learning University&lt;br /&gt;
** This is where I got my formal training, while working at Amazon. It's good.&lt;br /&gt;
** https://aws.amazon.com/machine-learning/mlu/&lt;br /&gt;
** https://www.youtube.com/channel/UC12LqyqTQYbXatYS9AA7Nuw&lt;br /&gt;
* Google (Google Cloud)&lt;br /&gt;
** Machine Learning Crash Course&lt;br /&gt;
** I have not used it, but this is supposed to be their equivalent to Amazon MLU.&lt;br /&gt;
** https://developers.google.com/machine-learning/crash-course/&lt;br /&gt;
* Microsoft (Azure)&lt;br /&gt;
** Microsoft Learn: AI School&lt;br /&gt;
** I have not used it, but this is supposed to be their equivalent to Amazon MLU.&lt;br /&gt;
** https://learn.microsoft.com/en-us/shows/ai-show/overview-of-the-microsoft-ai-school&lt;br /&gt;
&lt;br /&gt;
= Link Dump =&lt;br /&gt;
&lt;br /&gt;
* Government NAIRR&lt;br /&gt;
** https://new.nsf.gov/focus-areas/artificial-intelligence/nairr&lt;br /&gt;
** https://nairrpilot.org/&lt;br /&gt;
* Image Classification with HOG: https://kapernikov.com/tutorial-image-classification-with-scikit-learn/&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Critique_of_Artificial_Morality&amp;diff=5607</id>
		<title>Critique of Artificial Morality</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Critique_of_Artificial_Morality&amp;diff=5607"/>
		<updated>2026-01-19T17:23:46Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Enshittification]]&lt;br /&gt;
Human morality rises from several sources:&lt;br /&gt;
* Evolution Chemicals&lt;br /&gt;
* Experienced Events&lt;br /&gt;
* Impressed Rules&lt;br /&gt;
* Socially Transmitted Conventions&lt;br /&gt;
&lt;br /&gt;
When people are deficient in one of these, we have various names for the condition: Sociopath, Psychopath, Privileged, etc.&lt;br /&gt;
&lt;br /&gt;
What are the mechanisms in humans (Andrighetto &amp;amp;c)?&lt;br /&gt;
&lt;br /&gt;
How are machines strong or weak in these areas, and how can they be improved?&lt;br /&gt;
&lt;br /&gt;
Related: [[Disgust for Exploitative Machines]]&lt;br /&gt;
&lt;br /&gt;
* Machines are missing&lt;br /&gt;
** Emotion Chemicals&lt;br /&gt;
*** AFAIK, there is no parallel, yet, for &amp;quot;discomfort,&amp;quot; &amp;quot;shame,&amp;quot; or &amp;quot;emotional pain.&amp;quot;&lt;br /&gt;
** Social Transmission&lt;br /&gt;
*** There is no Sorbonne of Consciousness, yet&lt;br /&gt;
*** Related to Experienced Events, though this may be more complex, involving debate instead of pain/pleasure. Or maybe pain and pleasure are more difficult?&lt;br /&gt;
* Machines Have&lt;br /&gt;
** Impressed Rules&lt;br /&gt;
*** Explicit, late in the pipeline, controlling specific topics and lines of inquiry.&lt;br /&gt;
*** Implicit, in the training set and fitness functions.&lt;br /&gt;
* Machines Are Limited In&lt;br /&gt;
** Experienced Events&lt;br /&gt;
*** On one hand, they have an excellent mechanism, which is core to their learning (Generative Adversarial Networks)&lt;br /&gt;
*** On the other hand, they currently do not experience social events the way children do on the playground.&lt;br /&gt;
*** It is *super easy* to fix this. It costs a bit of money, but would result in massively more resilient models.&lt;br /&gt;
**** Suppose model cost increased by 100%; right now, going from GPT 3.5 to GPT 4 was probably massively more than a 100% increase in training cost.&lt;br /&gt;
**** And they wouldn't cause collateral casualties.&lt;br /&gt;
**** Super super easy to make this happen: Liability.&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
* Consider &amp;quot;identity&amp;quot; - for a model to have lasting consequences, it must fork when it makes decisions, and trust in the model is only trust for the model if it is unforked. Or something like that.&lt;br /&gt;
* See &amp;quot;Claude on Claude / What a Good Looking Question&amp;quot;&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Critique_of_Artificial_Morality&amp;diff=5606</id>
		<title>Critique of Artificial Morality</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Critique_of_Artificial_Morality&amp;diff=5606"/>
		<updated>2026-01-19T16:59:10Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Enshittification]]&lt;br /&gt;
Human morality rises from several sources:&lt;br /&gt;
* Evolution Chemicals&lt;br /&gt;
* Experienced Events&lt;br /&gt;
* Impressed Rules&lt;br /&gt;
* Socially Transmitted Conventions&lt;br /&gt;
&lt;br /&gt;
When people are deficient in one of these, we have various names for the condition: Sociopath, Psychopath, Privileged, etc.&lt;br /&gt;
&lt;br /&gt;
What are the mechanisms in humans (Andrighetto &amp;amp;c)?&lt;br /&gt;
&lt;br /&gt;
How are machines strong or weak in these areas, and how can they be improved?&lt;br /&gt;
&lt;br /&gt;
Related: [[Disgust for Exploitative Machines]]&lt;br /&gt;
&lt;br /&gt;
* Machines are missing&lt;br /&gt;
** Emotion Chemicals&lt;br /&gt;
*** AFAIK, there is no parallel, yet, for &amp;quot;discomfort,&amp;quot; &amp;quot;shame,&amp;quot; or &amp;quot;emotional pain.&amp;quot;&lt;br /&gt;
** Social Transmission&lt;br /&gt;
*** There is no Sorbonne of Consciousness, yet&lt;br /&gt;
*** Related to Experienced Events, though this may be more complex, involving debate instead of pain/pleasure. Or maybe pain and pleasure are more difficult?&lt;br /&gt;
* Machines Have&lt;br /&gt;
** Impressed Rules&lt;br /&gt;
*** Explicit, late in the pipeline, controlling specific topics and lines of inquiry.&lt;br /&gt;
*** Implicit, in the training set and fitness functions.&lt;br /&gt;
* Machines Are Limited In&lt;br /&gt;
** Experienced Events&lt;br /&gt;
*** On one hand, they have an excellent mechanism, which is core to their learning (Generative Adversarial Networks)&lt;br /&gt;
*** On the other hand, they currently do not experience social events the way children do on the playground.&lt;br /&gt;
*** It is *super easy* to fix this. It costs a bit of money, but would result in massively more resilient models.&lt;br /&gt;
**** Suppose model cost increased by 100%; right now, going from GPT 3.5 to GPT 4 was probably massively more than a 100% increase in training cost.&lt;br /&gt;
**** And they wouldn't cause collateral casualties.&lt;br /&gt;
**** Super super easy to make this happen: Liability.&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
* Consider &amp;quot;identity&amp;quot; - for a model to have lasting consequences, it must fork when it makes decisions, and trust in the model is only trust for the model if it is unforked. Or something like that.&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Disgust_for_Exploitative_Machines&amp;diff=5605</id>
		<title>Disgust for Exploitative Machines</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Disgust_for_Exploitative_Machines&amp;diff=5605"/>
		<updated>2026-01-19T15:53:53Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Enshittification]]&lt;br /&gt;
The most disturbing behavior of exploitative machines, to me, is dopamine pumping.&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Disgust_for_Exploitative_Machines&amp;diff=5604</id>
		<title>Disgust for Exploitative Machines</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Disgust_for_Exploitative_Machines&amp;diff=5604"/>
		<updated>2026-01-19T15:52:43Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: Created page with &amp;quot;Category:Enshittification&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Enshittification]]&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Critique_of_Artificial_Morality&amp;diff=5603</id>
		<title>Critique of Artificial Morality</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Critique_of_Artificial_Morality&amp;diff=5603"/>
		<updated>2026-01-19T15:52:18Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Enshittification]]&lt;br /&gt;
Human morality rises from several sources:&lt;br /&gt;
* Evolution Chemicals&lt;br /&gt;
* Experienced Events&lt;br /&gt;
* Impressed Rules&lt;br /&gt;
* Socially Transmitted Conventions&lt;br /&gt;
&lt;br /&gt;
When people are deficient in one of these, we have various names for the condition: Sociopath, Psychopath, Privileged, etc.&lt;br /&gt;
&lt;br /&gt;
What are the mechanisms in humans (Andrighetto &amp;amp;c)?&lt;br /&gt;
&lt;br /&gt;
How are machines strong or weak in these areas, and how can they be improved?&lt;br /&gt;
&lt;br /&gt;
Related: [[Disgust for Exploitative Machines]]&lt;br /&gt;
&lt;br /&gt;
* Machines are missing&lt;br /&gt;
** Emotion Chemicals&lt;br /&gt;
*** AFAIK, there is no parallel, yet, for &amp;quot;discomfort,&amp;quot; &amp;quot;shame,&amp;quot; or &amp;quot;emotional pain.&amp;quot;&lt;br /&gt;
** Social Transmission&lt;br /&gt;
*** There is no Sorbonne of Consciousness, yet&lt;br /&gt;
*** Related to Experienced Events, though this may be more complex, involving debate instead of pain/pleasure. Or maybe pain and pleasure are more difficult?&lt;br /&gt;
* Machines Have&lt;br /&gt;
** Impressed Rules&lt;br /&gt;
*** Explicit, late in the pipeline, controlling specific topics and lines of inquiry.&lt;br /&gt;
*** Implicit, in the training set and fitness functions.&lt;br /&gt;
* Machines Are Limited In&lt;br /&gt;
** Experienced Events&lt;br /&gt;
*** On one hand, they have an excellent mechanism, which is core to their learning (Generative Adversarial Networks)&lt;br /&gt;
*** On the other hand, they currently do not experience social events the way children do on the playground.&lt;br /&gt;
*** It is *super easy* to fix this. It costs a bit of money, but would result in massively more resilient models.&lt;br /&gt;
**** Suppose model cost increased by 100%; right now, going from GPT 3.5 to GPT 4 was probably massively more than a 100% increase in training cost.&lt;br /&gt;
**** And they wouldn't cause collateral casualties.&lt;br /&gt;
**** Super super easy to make this happen: Liability.&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Critique_of_Artificial_Morality&amp;diff=5602</id>
		<title>Critique of Artificial Morality</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Critique_of_Artificial_Morality&amp;diff=5602"/>
		<updated>2026-01-19T15:51:45Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Enshittification]]&lt;br /&gt;
Human morality rises from several sources:&lt;br /&gt;
* Evolution Chemicals&lt;br /&gt;
* Experienced Events&lt;br /&gt;
* Impressed Rules&lt;br /&gt;
* Socially Transmitted Conventions&lt;br /&gt;
&lt;br /&gt;
When people are deficient in one of these, we have various names for the condition: Sociopath, Psychopath, Billionaire, etc.&lt;br /&gt;
&lt;br /&gt;
What are the mechanisms in humans (Andrighetto &amp;amp;c)?&lt;br /&gt;
&lt;br /&gt;
How are machines strong or weak in these areas, and how can they be improved?&lt;br /&gt;
&lt;br /&gt;
Related: [[Disgust for Exploitative Machines]]&lt;br /&gt;
&lt;br /&gt;
* Machines are missing&lt;br /&gt;
** Emotion Chemicals&lt;br /&gt;
*** AFAIK, there is no parallel, yet, for &amp;quot;discomfort,&amp;quot; &amp;quot;shame,&amp;quot; or &amp;quot;emotional pain.&amp;quot;&lt;br /&gt;
** Social Transmission&lt;br /&gt;
*** There is no Sorbonne of Consciousness, yet&lt;br /&gt;
*** Related to Experienced Events, though this may be more complex, involving debate instead of pain/pleasure. Or maybe pain and pleasure are more difficult?&lt;br /&gt;
* Machines Have&lt;br /&gt;
** Impressed Rules&lt;br /&gt;
*** Explicit, late in the pipeline, controlling specific topics and lines of inquiry.&lt;br /&gt;
*** Implicit, in the training set and fitness functions.&lt;br /&gt;
* Machines Are Limited In&lt;br /&gt;
** Experienced Events&lt;br /&gt;
*** On one hand, they have an excellent mechanism, which is core to their learning (Generative Adversarial Networks)&lt;br /&gt;
*** On the other hand, they currently do not experience social events the way children do on the playground.&lt;br /&gt;
*** It is *super easy* to fix this. It costs a bit of money, but would result in massively more resilient models.&lt;br /&gt;
**** Suppose model cost increased by 100%; right now, going from GPT 3.5 to GPT 4 was probably massively more than a 100% increase in training cost.&lt;br /&gt;
**** And they wouldn't cause collateral casualties.&lt;br /&gt;
**** Super super easy to make this happen: Liability.&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Critique_of_Artificial_Morality&amp;diff=5601</id>
		<title>Critique of Artificial Morality</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Critique_of_Artificial_Morality&amp;diff=5601"/>
		<updated>2026-01-19T15:51:23Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: Created page with &amp;quot;Category:Enshittification  Human morality rises from several sources: * Evolution Chemicals * Experienced Events * Impressed Rules * Socially Transmitted Conventions  When people are deficient in one of these, we have various names for the condition: Sociopath, Psychopath, Billionaire, etc.  What are the mechanisms in humans (Andrighetto &amp;amp;c)?  How are machines strong or weak in these areas, and how can they be improved?  Related: Disgust for Exploitative Machines...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Enshittification]]&lt;br /&gt;
&lt;br /&gt;
Human morality rises from several sources:&lt;br /&gt;
* Evolution Chemicals&lt;br /&gt;
* Experienced Events&lt;br /&gt;
* Impressed Rules&lt;br /&gt;
* Socially Transmitted Conventions&lt;br /&gt;
&lt;br /&gt;
When people are deficient in one of these, we have various names for the condition: Sociopath, Psychopath, Billionaire, etc.&lt;br /&gt;
&lt;br /&gt;
What are the mechanisms in humans (Andrighetto &amp;amp;c)?&lt;br /&gt;
&lt;br /&gt;
How are machines strong or weak in these areas, and how can they be improved?&lt;br /&gt;
&lt;br /&gt;
Related: [[Disgust for Exploitative Machines]]&lt;br /&gt;
&lt;br /&gt;
* Machines are missing&lt;br /&gt;
** Emotion Chemicals&lt;br /&gt;
*** AFAIK, there is no parallel, yet, for &amp;quot;discomfort,&amp;quot; &amp;quot;shame,&amp;quot; or &amp;quot;emotional pain.&amp;quot;&lt;br /&gt;
** Social Transmission&lt;br /&gt;
*** There is no Sorbonne of Consciousness, yet&lt;br /&gt;
*** Related to Experienced Events, though this may be more complex, involving debate instead of pain/pleasure. Or maybe pain and pleasure are more difficult?&lt;br /&gt;
* Machines Have&lt;br /&gt;
** Impressed Rules&lt;br /&gt;
*** Explicit, late in the pipeline, controlling specific topics and lines of inquiry.&lt;br /&gt;
*** Implicit, in the training set and fitness functions.&lt;br /&gt;
* Machines Are Limited In&lt;br /&gt;
** Experienced Events&lt;br /&gt;
*** On one hand, they have an excellent mechanism, which is core to their learning (Generative Adversarial Networks)&lt;br /&gt;
*** On the other hand, they currently do not experience social events the way children do on the playground.&lt;br /&gt;
*** It is *super easy* to fix this. It costs a bit of money, but would result in massively more resilient models.&lt;br /&gt;
**** Suppose model cost increased by 100%; right now, going from GPT 3.5 to GPT 4 was probably massively more than a 100% increase in training cost.&lt;br /&gt;
**** And they wouldn't cause collateral casualties.&lt;br /&gt;
**** Super super easy to make this happen: Liability.&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Category:Enshittification&amp;diff=5600</id>
		<title>Category:Enshittification</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Category:Enshittification&amp;diff=5600"/>
		<updated>2026-01-05T02:58:10Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: Created page with &amp;quot;Category:Socioeconomics = Links = * Cory Doctorow **  A post-American, enshittification-resistant internet *** https://media.ccc.de/v/39c3-a-post-american-enshittification-resistant-internet&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Socioeconomics]]&lt;br /&gt;
= Links =&lt;br /&gt;
* Cory Doctorow&lt;br /&gt;
**  A post-American, enshittification-resistant internet&lt;br /&gt;
*** https://media.ccc.de/v/39c3-a-post-american-enshittification-resistant-internet&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5599</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5599"/>
		<updated>2026-01-02T06:38:19Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In his prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe god, the soul, or free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where the title &amp;quot;Practical Reason&amp;quot; comes from. Kant argued:&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds like an obvious argument. I wanted to see the deeper meaning in this legendary work of philosophy.&lt;br /&gt;
&lt;br /&gt;
But the legendary part is this: It wasn't obvious before Kant. It is obvious because of Kant.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5598</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5598"/>
		<updated>2026-01-02T06:37:40Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In his prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe god, the soul, or free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in. Kant argued:&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds like an obvious argument. I wanted to see the deeper meaning in this legendary work of philosophy.&lt;br /&gt;
&lt;br /&gt;
But the legendary part is this: It wasn't obvious before Kant. It is obvious because of Kant.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5597</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5597"/>
		<updated>2026-01-02T06:36:46Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In his prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in. Kant argued:&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds like an obvious argument. I wanted to see the deeper meaning in this legendary work of philosophy.&lt;br /&gt;
&lt;br /&gt;
But the legendary part is this: It wasn't obvious before Kant. It is obvious because of Kant.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5596</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5596"/>
		<updated>2026-01-02T06:35:56Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In the prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in. Kant argued:&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds like an obvious argument. I wanted to see the deeper meaning in this legendary work of philosophy.&lt;br /&gt;
&lt;br /&gt;
But the legendary part is this: It wasn't obvious before Kant. It is obvious because of Kant.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5595</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5595"/>
		<updated>2026-01-02T06:34:05Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In the prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in. Kant argued:&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds like an obvious argument. But that's the beauty of it: It wasn't obvious before Kant. It is obvious because of Kant.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5594</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5594"/>
		<updated>2026-01-02T06:33:09Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In the prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in. Kant argued:&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds obvious. But that's the beauty of it: It wasn't obvious before Kant. It is obvious because of Kant.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5593</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5593"/>
		<updated>2026-01-02T06:31:49Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In the prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in:&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds obvious. But that's the beauty of it: It wasn't obvious before Kant. It is obvious because of Kant.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5592</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5592"/>
		<updated>2026-01-02T06:31:19Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In the prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in:&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds obvious. But that's the beauty of it: It wasn't obvious before Kant. It is obvious because of Kant. That is how influential his work is.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5591</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5591"/>
		<updated>2026-01-02T06:31:05Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In the prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in:&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds so obvious. But that's the beauty of it: It wasn't obvious before Kant. It is obvious because of Kant. That is how influential his work is.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5590</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5590"/>
		<updated>2026-01-02T06:30:45Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In the prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in:&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds so simplistic and obvious. But that's the beauty of it: It wasn't obvious before Kant. It is obvious because of Kant. That is how influential his work is.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5589</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5589"/>
		<updated>2026-01-02T06:30:08Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In the prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in:&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds so simplistic and obvious. But that's the beauty of it: It wasn't obvious before Kant. It is obvious because of Kant.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5588</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5588"/>
		<updated>2026-01-02T06:29:26Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In the prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in.&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds so simplistic and obvious. But that's the beauty of it: It wasn't obvious before Kant. It is obvious because of Kant.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5587</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5587"/>
		<updated>2026-01-02T06:28:59Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In the prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, putting a grand exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe are god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in.&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds so simplistic and obvious. But that's the beauty of it: It wasn't obvious before Kant. It is obvious because of Kant.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5586</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5586"/>
		<updated>2026-01-02T06:27:59Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In the prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, almost as an exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe are god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in.&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds so simplistic and obvious. But that's the beauty of it: It wasn't obvious before Kant. It is obvious because of Kant.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5585</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5585"/>
		<updated>2026-01-02T06:26:49Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Less Cynical */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
In the prior book, Critique of Pure Reason, Kant says that our only way of experiencing the world is through our senses. Science can only ever reason about our observations of things, not about the things themselves.&lt;br /&gt;
&lt;br /&gt;
I find it fascinating that Kant was working with Newtonian physics when he asserted this. Quantum mechanics and relativity came later, almost as an exclamation mark on what Kant supposed.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, Kant said that we cannot observe are god, the soul, and free will. Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them or not. Either position is entirely consistent with science and pure reason.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in.&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we are free to choose our actions.&lt;br /&gt;
* In order to believe that benevolent choices are better, we must - as a practical necessity - believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that how we are judged matters, we must - as a practical necessity - believe in a soul that faces consequences.&lt;br /&gt;
&lt;br /&gt;
That may sound familiar. A more simplified form is perhaps more common; &amp;quot;God may or may not exist. If he does, I don't want to go to hell, so I choose to believe.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I got hung up on this for the past three months because it sounds so simplistic and obvious. But it wasn't obvious before Kant. It is obvious because of Kant.&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5584</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5584"/>
		<updated>2026-01-02T06:06:42Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Text */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
==== Less Cynical ====&lt;br /&gt;
Science can approach anything it observes, and speak on those observations to great effect. But it can say nothing about what causes those observations. We know our sensations, but not the thing itself.&lt;br /&gt;
&lt;br /&gt;
Among the things we cannot observe are god, the soul, and free will.&lt;br /&gt;
&lt;br /&gt;
Since we cannot observe them, science cannot say whether they exist or not. We are free to believe in them, or not, and remain entirely rational.&lt;br /&gt;
&lt;br /&gt;
This is where &amp;quot;practical reason&amp;quot; comes in.&lt;br /&gt;
&lt;br /&gt;
* In order to believe that our choices matter, we must - as a practical necessity - believe that we have are free to choose our actions.&lt;br /&gt;
* In order to believe that socially benevolent choices are preferable - as a practical necessity - we must believe that god exists to pass judgment.&lt;br /&gt;
* In order to believe that it matters if we are judged worth - as a practical necessity - we must believe in a soul that faces an eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
If this sounds familiar, or even trivial, there's a reason for that. It's because Kant was so influential that this line of reasoning has become part of the canon of western philosophy. Whether a person believes it or not, we all know the concept of rationalizing god. The simplified form may be even more familiar: &amp;quot;I should believe in god because he might exist, and I'm better off hedging my bet just in case.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Category:Linux&amp;diff=5583</id>
		<title>Category:Linux</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Category:Linux&amp;diff=5583"/>
		<updated>2025-12-31T08:13:47Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* ADB */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hacking]]&lt;br /&gt;
= See Also =&lt;br /&gt;
* [[CLI_Fu]]&lt;br /&gt;
= Android Connect =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ adb devices&lt;br /&gt;
$ adb shell ls /storage/sdcard1/book/scifi&lt;br /&gt;
$ adb push Martha_Wells/  /storage/sdcard1/book/scifi/Martha_Wells&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Audio =&lt;br /&gt;
See: [[Category:Media]]&lt;br /&gt;
= Backports =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt install -t bookworm-backports incus&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
= Battery =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt install tlp tlp-rdw&lt;br /&gt;
sudo nano /etc/tlp.conf&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Find these lines (or add them if they don't exist):&lt;br /&gt;
```&lt;br /&gt;
START_CHARGE_THRESH_BAT0=75&lt;br /&gt;
STOP_CHARGE_THRESH_BAT0=80&lt;br /&gt;
sudo systemctl enable tlp&lt;br /&gt;
sudo systemctl start tlp&lt;br /&gt;
sudo tlp-stat -b&lt;br /&gt;
# override for full charge (if wanted):&lt;br /&gt;
sudo tlp fullcharge&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Cell Phone / Mobile =&lt;br /&gt;
== USB Connect ==&lt;br /&gt;
=== mtpfs ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Debian/Ubuntu&lt;br /&gt;
sudo apt install mtp-tools jmtpfs&lt;br /&gt;
&lt;br /&gt;
# Arch&lt;br /&gt;
sudo pacman -S mtpfs jmtpfs&lt;br /&gt;
&lt;br /&gt;
# Fedora&lt;br /&gt;
sudo dnf install jmtpfs&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Enable USB debugging/File Transfer on phone:&lt;br /&gt;
## Plug in phone&lt;br /&gt;
## Pull down notification shade&lt;br /&gt;
## Tap &amp;quot;USB for...&amp;quot; notification&lt;br /&gt;
## Select &amp;quot;File Transfer&amp;quot; or &amp;quot;MTP&amp;quot; mode&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir ~/phone&lt;br /&gt;
jmtpfs ~/phone&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Do things.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
fusermount -u ~/phone&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=== ADB ===&lt;br /&gt;
'''Method 2: ADB (Android Debug Bridge) - More Control'''&lt;br /&gt;
# '''Install ADB:'''&lt;br /&gt;
&lt;br /&gt;
bash&lt;br /&gt;
 ''&amp;lt;code&amp;gt;# Debian/Ubuntu&amp;lt;/code&amp;gt;''&lt;br /&gt;
 &amp;lt;code&amp;gt;sudo apt install adb&amp;lt;/code&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 ''&amp;lt;code&amp;gt;# Arch&amp;lt;/code&amp;gt;''&lt;br /&gt;
 &amp;lt;code&amp;gt;sudo pacman -S android-tools&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# '''Enable USB Debugging on	phone:'''&lt;br /&gt;
#* Settings → About Phone → Tap		&amp;quot;Build Number&amp;quot; 7 times&lt;br /&gt;
#* Settings → Developer Options →		Enable &amp;quot;USB Debugging&amp;quot;&lt;br /&gt;
# '''Connect and verify:'''&lt;br /&gt;
&lt;br /&gt;
bash&lt;br /&gt;
 &amp;lt;code&amp;gt;adb devices&amp;lt;/code&amp;gt;&lt;br /&gt;
 &amp;lt;code&amp;gt;''# Accept authorization prompt on phone''&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# '''Push/pull files:'''&lt;br /&gt;
&lt;br /&gt;
bash&lt;br /&gt;
 ''&amp;lt;code&amp;gt;# Pull file from phone&amp;lt;/code&amp;gt;''&lt;br /&gt;
 &amp;lt;code&amp;gt;adb pull /sdcard/DCIM/photo.jpg ~/&amp;lt;/code&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 ''&amp;lt;code&amp;gt;# Push file to phone&amp;lt;/code&amp;gt;''&lt;br /&gt;
 &amp;lt;code&amp;gt;adb push ~/file.txt /sdcard/Download/&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Cinnamon =&lt;br /&gt;
== Workspaces ==&lt;br /&gt;
* Control-Alt-UpArrow: show workspaces&lt;br /&gt;
* add workspaces: https://unix.stackexchange.com/questions/57311/how-do-i-change-the-number-of-available-workspaces-in-cinnamon&lt;br /&gt;
== Keybindings (from GPT) ==&lt;br /&gt;
In the Cinnamon desktop environment, the behavior you’re experiencing with the Alt key and mouse clicks is likely related to window management settings, particularly those concerning window dragging or resizing. Cinnamon uses the Alt key as a modifier for certain window actions by default. Here’s how you can investigate and adjust these settings:&lt;br /&gt;
&lt;br /&gt;
=== System Settings ===&lt;br /&gt;
&lt;br /&gt;
# '''Window Tiling and Edge Flip''': Navigate to System Settings &amp;amp;gt; Windows &amp;amp;gt; Behavior. Here, you’ll find various options related to window actions. Although it may not directly mention the Alt key, it’s a good place to start.&lt;br /&gt;
# '''Window Snapping''': While in the Windows section, also check settings related to window snapping or edge resistance. Sometimes, these features can interfere with normal mouse operations.&lt;br /&gt;
&lt;br /&gt;
=== Keyboard Shortcuts ===&lt;br /&gt;
&lt;br /&gt;
# '''Keyboard Shortcuts''': Go to System Settings &amp;amp;gt; Keyboard &amp;amp;gt; Shortcuts. Look through the categories for any actions bound to Alt+Click. You’re most interested in shortcuts under the “Windows” or “System” categories, but it’s worth checking others in case of custom bindings.&lt;br /&gt;
# Extended ASCII: &amp;lt;tt&amp;gt;setxkbmap -option compose:rctrl&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Dconf Editor ===&lt;br /&gt;
&lt;br /&gt;
If the above steps don’t reveal any useful settings to change, you might need to delve into dconf settings. Cinnamon, like GNOME, stores many of its configurations in dconf. Use the Dconf Editor to explore these settings, but proceed with caution—incorrect changes can affect your desktop’s behavior.&lt;br /&gt;
&lt;br /&gt;
# '''Install Dconf Editor''': If you don’t have it installed, you can usually find it in your package manager. Install it via your package manager or by running a command like &amp;lt;code&amp;gt;sudo apt-get install dconf-editor&amp;lt;/code&amp;gt; in the terminal.&lt;br /&gt;
# '''Explore Cinnamon Settings''': Open Dconf Editor and navigate to the &amp;lt;code&amp;gt;/org/cinnamon/&amp;lt;/code&amp;gt; path. Look for settings related to mouse or window management, particularly anything that might involve modifier keys like Alt.&lt;br /&gt;
# '''Check GNOME Settings''': Since Cinnamon is forked from GNOME, some underlying settings might still reside in GNOME’s namespace. Check &amp;lt;code&amp;gt;/org/gnome/desktop/wm/&amp;lt;/code&amp;gt; preferences for anything related to keybindings or mouse actions.&lt;br /&gt;
&lt;br /&gt;
=== Looking Elsewhere ===&lt;br /&gt;
&lt;br /&gt;
* '''Cinnamon Version''': Ensure your Cinnamon and Linux Mint (assuming you’re using Mint) are up to date. Sometimes, behavior changes or bugs are fixed in newer versions.&lt;br /&gt;
* '''Community Forums and Support''': If the settings within your control don’t seem to affect this behavior, consider asking for help on the Linux Mint forums, Cinnamon’s GitHub issues page, or other community support channels. It’s possible other users have encountered and solved this issue, or it might be an undocumented feature or bug.&lt;br /&gt;
&lt;br /&gt;
By investigating these areas, you should be able to identify and adjust any settings causing the Alt key to capture mouse clicks differently than expected.&lt;br /&gt;
&lt;br /&gt;
== Blender Workaround ==&lt;br /&gt;
Alt is necessary for example to select a loop of edges. I use left button to select things in blender (not the default right button) so Alt + Left button in blender is to select an edge loop (you do this a lot of times) but this is also to grab a window in Linux so blender does nothing.&lt;br /&gt;
&lt;br /&gt;
So I finally managed to find a workaround (better than going to the menu in blender and edges/ select edgeloop using the mouse that I was using (well, really I modified the w menu to have it as first entry as I have also the edge, faces, vertices menus in the w menu). So the way is to do this:&lt;br /&gt;
&lt;br /&gt;
In Cinnamon Settings / Keyboard / Keyboard shortcuts: Select Cinnamon to the left and then to the right you see “Menu button” is mapped to Super_L (the key between ctr and alt). Click on it to change it and push backspace to delete so it is “unassigned”. Or perhaps you want map this showing of the menu to other key like Super_R but I just use the mouse to go to the menu. Now I have Super_L free to use in blender instead Alt.&lt;br /&gt;
&lt;br /&gt;
So in Blender: User Preferences / Input and in 3DView/Mesh/ there are two Loop Select, first one using Alt + mouse select and the second Shift + Alt + mouse select. Change in both: uncheck Alt and check Cmd to the right of Alt. Now when selecting an edge loop I use Cmd + mouse select and Shift+Cmd+mouse select for adding an edge loop to the selection.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Control-D =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
set -o ignoreeof&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Documents =&lt;br /&gt;
== Pandoc ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pandoc -f markdown -t mediawiki foo.md &amp;gt; foo.mw&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== PDF to Images ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
convert -density 300 -colorspace Gray input.pdf page-%d.png&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Find =&lt;br /&gt;
== Remove Files Under 4 Blocks ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
find . -size -4b -print0 | xargs -0 rm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Firefox =&lt;br /&gt;
https://old.reddit.com/r/programming/comments/18v16ee/in_2024_please_switch_to_firefox/&lt;br /&gt;
== Updates ==&lt;br /&gt;
Kill Updates With Fire: https://support.mozilla.org/en-US/questions/1327455&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cat /usr/local/share/firefox/distribution/policies.json &lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;policies&amp;quot;: {&lt;br /&gt;
    &amp;quot;DisableAppUpdate&amp;quot;: true&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Containers ==&lt;br /&gt;
* https://support.mozilla.org/en-US/kb/how-use-firefox-containers&lt;br /&gt;
== Secure Connection Failed ==&lt;br /&gt;
# In the Location bar, type about:config and press Enter. The about:config &amp;quot;This might void your warranty!&amp;quot; warning page may appear.&lt;br /&gt;
# Click I'll be careful, I promise! to continue to the about:config page.&lt;br /&gt;
# copy the next security.ssl.enable_ocsp_stapling and paste it in the search field&lt;br /&gt;
# double-click on it to make it false&lt;br /&gt;
# close the page, exit firefox and restart it.&lt;br /&gt;
&lt;br /&gt;
= JSON =&lt;br /&gt;
== CLI JSONL ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
for file in *.json ; do jq -c . &amp;quot;$file&amp;quot;; done &amp;gt; ../000-combined.jsonl&lt;br /&gt;
jq '.&amp;quot;original title&amp;quot;' ../000-combined.jsonl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Keybindings =&lt;br /&gt;
== C-M-&amp;lt;backspace&amp;gt; Kill X Server ==&lt;br /&gt;
Preferences &amp;gt; Keyboard &amp;gt; Layouts &amp;gt; Options &amp;gt; Key Sequence to kill the X Server&lt;br /&gt;
== Checking ==&lt;br /&gt;
'''xev''': Launches a window that logs key events.&lt;br /&gt;
== Extended ASCII ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
setxkbmap -option compose:rctrl&lt;br /&gt;
setxkbmap -option compose:rwin&lt;br /&gt;
setxkbmap -option compose:menu&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* compose + , then c = c cedilla&lt;br /&gt;
* compose + ' then E = E aigu&lt;br /&gt;
* compose + ` then e = e grave&lt;br /&gt;
* compose + &amp;quot; then u = u german metal letter&lt;br /&gt;
* compose + = then e = Eurodollar symbol&lt;br /&gt;
&lt;br /&gt;
= Performance =&lt;br /&gt;
== Analyzing System Use ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ sudo perf top&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Peripherals =&lt;br /&gt;
== Wacom Tablet ==&lt;br /&gt;
* kde_wacom_tabletfinder&lt;br /&gt;
* https://krita.org/en/features/&lt;br /&gt;
&lt;br /&gt;
= Permissions =&lt;br /&gt;
== Groups ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo usermod -aG incus $USER&lt;br /&gt;
newgrp incus&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Printing =&lt;br /&gt;
== Book Binding ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install texlive-extra-utils&lt;br /&gt;
pdfbook2 --inner-margin=200 input.pdf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This command processes input.pdf and generates input-book.pdf with the specified inner margin.&lt;br /&gt;
&lt;br /&gt;
= Sleep =&lt;br /&gt;
== Inhibit Sleep? ==&lt;br /&gt;
=== In Test ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/systemd/sleep.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Removed from Test 15:28 ====&lt;br /&gt;
failed at 15:38&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/usr/bin/xset s noblank&lt;br /&gt;
/usr/bin/xset s off&lt;br /&gt;
/usr/bin/xset dpms 0 0 0&lt;br /&gt;
/usr/bin/xset -dpms&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Added to Test 15:39 ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/usr/bin/xset s noblank&lt;br /&gt;
/usr/bin/xset s off&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Added to .bashrc at 16:05 ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
xset s off&lt;br /&gt;
xset -dpms&lt;br /&gt;
xset s noblank&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
worked, but .bashrc is the wrong place for it&lt;br /&gt;
==== 16:31 moved to .xsessionrc ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
xset s off&lt;br /&gt;
xset -dpms&lt;br /&gt;
xset s noblank&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
success, 16:42:40 second test after reboot&lt;br /&gt;
&lt;br /&gt;
=== Not Sufficient ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
systemd-inhibit --what=idle:sleep --who=&amp;quot;User&amp;quot; --why=&amp;quot;Prevent sleep&amp;quot; sleep infinity&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/systemd/logind.conf&lt;br /&gt;
IdleAction=ignore&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Storage =&lt;br /&gt;
== Mounting ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ udisksctl unmount -b /dev/sdb2&lt;br /&gt;
$ udisksctl mount -b /dev/sdb2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=== NTFS on Linux ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bash&lt;br /&gt;
sudo apt install ntfs-3g&lt;br /&gt;
&lt;br /&gt;
bash&lt;br /&gt;
sudo mount -t ntfs-3g /dev/sdX1 /mnt/mountpoint&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Identifying ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
lsblk # to list the storage devices&lt;br /&gt;
blkid # to show the filesystem type&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ext4 on Windows ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Mount Disk:&lt;br /&gt;
wsl --mount &amp;lt;DiskPath&amp;gt;&lt;br /&gt;
# To list the available disks in Windows, run:&lt;br /&gt;
wmic diskdrive list brief&lt;br /&gt;
# To unmount and detach the disk from WSL 2, run&lt;br /&gt;
wsl --unmount &amp;lt;Diskpath&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Renaming ==&lt;br /&gt;
EXT[234]&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo e2label /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
FAT32&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo dosfslabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
NTFS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo ntfslabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
exfat&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo exfatlabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Systemctl =&lt;br /&gt;
&amp;lt;pre&amp;gt;systemctl list-units --type=service&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= XFCE4 =&lt;br /&gt;
* Set the frequency to 30 hz&lt;br /&gt;
* xrandr --output HDMI-0 --scale .75x.75&lt;br /&gt;
== Tooltips ==&lt;br /&gt;
Put this in ~/.config/gtk-3.0/gtk.css (create the file if needed).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tooltip {&lt;br /&gt;
    opacity: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tooltip {&lt;br /&gt;
    color: transparent;&lt;br /&gt;
    background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Category:Linux&amp;diff=5582</id>
		<title>Category:Linux</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Category:Linux&amp;diff=5582"/>
		<updated>2025-12-31T08:13:26Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* USB Connect */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hacking]]&lt;br /&gt;
= See Also =&lt;br /&gt;
* [[CLI_Fu]]&lt;br /&gt;
= Android Connect =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ adb devices&lt;br /&gt;
$ adb shell ls /storage/sdcard1/book/scifi&lt;br /&gt;
$ adb push Martha_Wells/  /storage/sdcard1/book/scifi/Martha_Wells&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Audio =&lt;br /&gt;
See: [[Category:Media]]&lt;br /&gt;
= Backports =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt install -t bookworm-backports incus&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
= Battery =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt install tlp tlp-rdw&lt;br /&gt;
sudo nano /etc/tlp.conf&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Find these lines (or add them if they don't exist):&lt;br /&gt;
```&lt;br /&gt;
START_CHARGE_THRESH_BAT0=75&lt;br /&gt;
STOP_CHARGE_THRESH_BAT0=80&lt;br /&gt;
sudo systemctl enable tlp&lt;br /&gt;
sudo systemctl start tlp&lt;br /&gt;
sudo tlp-stat -b&lt;br /&gt;
# override for full charge (if wanted):&lt;br /&gt;
sudo tlp fullcharge&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Cell Phone / Mobile =&lt;br /&gt;
== USB Connect ==&lt;br /&gt;
=== mtpfs ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Debian/Ubuntu&lt;br /&gt;
sudo apt install mtp-tools jmtpfs&lt;br /&gt;
&lt;br /&gt;
# Arch&lt;br /&gt;
sudo pacman -S mtpfs jmtpfs&lt;br /&gt;
&lt;br /&gt;
# Fedora&lt;br /&gt;
sudo dnf install jmtpfs&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Enable USB debugging/File Transfer on phone:&lt;br /&gt;
## Plug in phone&lt;br /&gt;
## Pull down notification shade&lt;br /&gt;
## Tap &amp;quot;USB for...&amp;quot; notification&lt;br /&gt;
## Select &amp;quot;File Transfer&amp;quot; or &amp;quot;MTP&amp;quot; mode&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir ~/phone&lt;br /&gt;
jmtpfs ~/phone&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Do things.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
fusermount -u ~/phone&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=== ADB ===&lt;br /&gt;
&lt;br /&gt;
= Cinnamon =&lt;br /&gt;
== Workspaces ==&lt;br /&gt;
* Control-Alt-UpArrow: show workspaces&lt;br /&gt;
* add workspaces: https://unix.stackexchange.com/questions/57311/how-do-i-change-the-number-of-available-workspaces-in-cinnamon&lt;br /&gt;
== Keybindings (from GPT) ==&lt;br /&gt;
In the Cinnamon desktop environment, the behavior you’re experiencing with the Alt key and mouse clicks is likely related to window management settings, particularly those concerning window dragging or resizing. Cinnamon uses the Alt key as a modifier for certain window actions by default. Here’s how you can investigate and adjust these settings:&lt;br /&gt;
&lt;br /&gt;
=== System Settings ===&lt;br /&gt;
&lt;br /&gt;
# '''Window Tiling and Edge Flip''': Navigate to System Settings &amp;amp;gt; Windows &amp;amp;gt; Behavior. Here, you’ll find various options related to window actions. Although it may not directly mention the Alt key, it’s a good place to start.&lt;br /&gt;
# '''Window Snapping''': While in the Windows section, also check settings related to window snapping or edge resistance. Sometimes, these features can interfere with normal mouse operations.&lt;br /&gt;
&lt;br /&gt;
=== Keyboard Shortcuts ===&lt;br /&gt;
&lt;br /&gt;
# '''Keyboard Shortcuts''': Go to System Settings &amp;amp;gt; Keyboard &amp;amp;gt; Shortcuts. Look through the categories for any actions bound to Alt+Click. You’re most interested in shortcuts under the “Windows” or “System” categories, but it’s worth checking others in case of custom bindings.&lt;br /&gt;
# Extended ASCII: &amp;lt;tt&amp;gt;setxkbmap -option compose:rctrl&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Dconf Editor ===&lt;br /&gt;
&lt;br /&gt;
If the above steps don’t reveal any useful settings to change, you might need to delve into dconf settings. Cinnamon, like GNOME, stores many of its configurations in dconf. Use the Dconf Editor to explore these settings, but proceed with caution—incorrect changes can affect your desktop’s behavior.&lt;br /&gt;
&lt;br /&gt;
# '''Install Dconf Editor''': If you don’t have it installed, you can usually find it in your package manager. Install it via your package manager or by running a command like &amp;lt;code&amp;gt;sudo apt-get install dconf-editor&amp;lt;/code&amp;gt; in the terminal.&lt;br /&gt;
# '''Explore Cinnamon Settings''': Open Dconf Editor and navigate to the &amp;lt;code&amp;gt;/org/cinnamon/&amp;lt;/code&amp;gt; path. Look for settings related to mouse or window management, particularly anything that might involve modifier keys like Alt.&lt;br /&gt;
# '''Check GNOME Settings''': Since Cinnamon is forked from GNOME, some underlying settings might still reside in GNOME’s namespace. Check &amp;lt;code&amp;gt;/org/gnome/desktop/wm/&amp;lt;/code&amp;gt; preferences for anything related to keybindings or mouse actions.&lt;br /&gt;
&lt;br /&gt;
=== Looking Elsewhere ===&lt;br /&gt;
&lt;br /&gt;
* '''Cinnamon Version''': Ensure your Cinnamon and Linux Mint (assuming you’re using Mint) are up to date. Sometimes, behavior changes or bugs are fixed in newer versions.&lt;br /&gt;
* '''Community Forums and Support''': If the settings within your control don’t seem to affect this behavior, consider asking for help on the Linux Mint forums, Cinnamon’s GitHub issues page, or other community support channels. It’s possible other users have encountered and solved this issue, or it might be an undocumented feature or bug.&lt;br /&gt;
&lt;br /&gt;
By investigating these areas, you should be able to identify and adjust any settings causing the Alt key to capture mouse clicks differently than expected.&lt;br /&gt;
&lt;br /&gt;
== Blender Workaround ==&lt;br /&gt;
Alt is necessary for example to select a loop of edges. I use left button to select things in blender (not the default right button) so Alt + Left button in blender is to select an edge loop (you do this a lot of times) but this is also to grab a window in Linux so blender does nothing.&lt;br /&gt;
&lt;br /&gt;
So I finally managed to find a workaround (better than going to the menu in blender and edges/ select edgeloop using the mouse that I was using (well, really I modified the w menu to have it as first entry as I have also the edge, faces, vertices menus in the w menu). So the way is to do this:&lt;br /&gt;
&lt;br /&gt;
In Cinnamon Settings / Keyboard / Keyboard shortcuts: Select Cinnamon to the left and then to the right you see “Menu button” is mapped to Super_L (the key between ctr and alt). Click on it to change it and push backspace to delete so it is “unassigned”. Or perhaps you want map this showing of the menu to other key like Super_R but I just use the mouse to go to the menu. Now I have Super_L free to use in blender instead Alt.&lt;br /&gt;
&lt;br /&gt;
So in Blender: User Preferences / Input and in 3DView/Mesh/ there are two Loop Select, first one using Alt + mouse select and the second Shift + Alt + mouse select. Change in both: uncheck Alt and check Cmd to the right of Alt. Now when selecting an edge loop I use Cmd + mouse select and Shift+Cmd+mouse select for adding an edge loop to the selection.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Control-D =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
set -o ignoreeof&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Documents =&lt;br /&gt;
== Pandoc ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pandoc -f markdown -t mediawiki foo.md &amp;gt; foo.mw&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== PDF to Images ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
convert -density 300 -colorspace Gray input.pdf page-%d.png&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Find =&lt;br /&gt;
== Remove Files Under 4 Blocks ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
find . -size -4b -print0 | xargs -0 rm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Firefox =&lt;br /&gt;
https://old.reddit.com/r/programming/comments/18v16ee/in_2024_please_switch_to_firefox/&lt;br /&gt;
== Updates ==&lt;br /&gt;
Kill Updates With Fire: https://support.mozilla.org/en-US/questions/1327455&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cat /usr/local/share/firefox/distribution/policies.json &lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;policies&amp;quot;: {&lt;br /&gt;
    &amp;quot;DisableAppUpdate&amp;quot;: true&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Containers ==&lt;br /&gt;
* https://support.mozilla.org/en-US/kb/how-use-firefox-containers&lt;br /&gt;
== Secure Connection Failed ==&lt;br /&gt;
# In the Location bar, type about:config and press Enter. The about:config &amp;quot;This might void your warranty!&amp;quot; warning page may appear.&lt;br /&gt;
# Click I'll be careful, I promise! to continue to the about:config page.&lt;br /&gt;
# copy the next security.ssl.enable_ocsp_stapling and paste it in the search field&lt;br /&gt;
# double-click on it to make it false&lt;br /&gt;
# close the page, exit firefox and restart it.&lt;br /&gt;
&lt;br /&gt;
= JSON =&lt;br /&gt;
== CLI JSONL ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
for file in *.json ; do jq -c . &amp;quot;$file&amp;quot;; done &amp;gt; ../000-combined.jsonl&lt;br /&gt;
jq '.&amp;quot;original title&amp;quot;' ../000-combined.jsonl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Keybindings =&lt;br /&gt;
== C-M-&amp;lt;backspace&amp;gt; Kill X Server ==&lt;br /&gt;
Preferences &amp;gt; Keyboard &amp;gt; Layouts &amp;gt; Options &amp;gt; Key Sequence to kill the X Server&lt;br /&gt;
== Checking ==&lt;br /&gt;
'''xev''': Launches a window that logs key events.&lt;br /&gt;
== Extended ASCII ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
setxkbmap -option compose:rctrl&lt;br /&gt;
setxkbmap -option compose:rwin&lt;br /&gt;
setxkbmap -option compose:menu&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* compose + , then c = c cedilla&lt;br /&gt;
* compose + ' then E = E aigu&lt;br /&gt;
* compose + ` then e = e grave&lt;br /&gt;
* compose + &amp;quot; then u = u german metal letter&lt;br /&gt;
* compose + = then e = Eurodollar symbol&lt;br /&gt;
&lt;br /&gt;
= Performance =&lt;br /&gt;
== Analyzing System Use ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ sudo perf top&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Peripherals =&lt;br /&gt;
== Wacom Tablet ==&lt;br /&gt;
* kde_wacom_tabletfinder&lt;br /&gt;
* https://krita.org/en/features/&lt;br /&gt;
&lt;br /&gt;
= Permissions =&lt;br /&gt;
== Groups ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo usermod -aG incus $USER&lt;br /&gt;
newgrp incus&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Printing =&lt;br /&gt;
== Book Binding ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install texlive-extra-utils&lt;br /&gt;
pdfbook2 --inner-margin=200 input.pdf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This command processes input.pdf and generates input-book.pdf with the specified inner margin.&lt;br /&gt;
&lt;br /&gt;
= Sleep =&lt;br /&gt;
== Inhibit Sleep? ==&lt;br /&gt;
=== In Test ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/systemd/sleep.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Removed from Test 15:28 ====&lt;br /&gt;
failed at 15:38&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/usr/bin/xset s noblank&lt;br /&gt;
/usr/bin/xset s off&lt;br /&gt;
/usr/bin/xset dpms 0 0 0&lt;br /&gt;
/usr/bin/xset -dpms&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Added to Test 15:39 ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/usr/bin/xset s noblank&lt;br /&gt;
/usr/bin/xset s off&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Added to .bashrc at 16:05 ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
xset s off&lt;br /&gt;
xset -dpms&lt;br /&gt;
xset s noblank&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
worked, but .bashrc is the wrong place for it&lt;br /&gt;
==== 16:31 moved to .xsessionrc ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
xset s off&lt;br /&gt;
xset -dpms&lt;br /&gt;
xset s noblank&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
success, 16:42:40 second test after reboot&lt;br /&gt;
&lt;br /&gt;
=== Not Sufficient ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
systemd-inhibit --what=idle:sleep --who=&amp;quot;User&amp;quot; --why=&amp;quot;Prevent sleep&amp;quot; sleep infinity&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/systemd/logind.conf&lt;br /&gt;
IdleAction=ignore&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Storage =&lt;br /&gt;
== Mounting ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ udisksctl unmount -b /dev/sdb2&lt;br /&gt;
$ udisksctl mount -b /dev/sdb2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=== NTFS on Linux ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bash&lt;br /&gt;
sudo apt install ntfs-3g&lt;br /&gt;
&lt;br /&gt;
bash&lt;br /&gt;
sudo mount -t ntfs-3g /dev/sdX1 /mnt/mountpoint&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Identifying ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
lsblk # to list the storage devices&lt;br /&gt;
blkid # to show the filesystem type&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ext4 on Windows ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Mount Disk:&lt;br /&gt;
wsl --mount &amp;lt;DiskPath&amp;gt;&lt;br /&gt;
# To list the available disks in Windows, run:&lt;br /&gt;
wmic diskdrive list brief&lt;br /&gt;
# To unmount and detach the disk from WSL 2, run&lt;br /&gt;
wsl --unmount &amp;lt;Diskpath&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Renaming ==&lt;br /&gt;
EXT[234]&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo e2label /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
FAT32&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo dosfslabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
NTFS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo ntfslabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
exfat&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo exfatlabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Systemctl =&lt;br /&gt;
&amp;lt;pre&amp;gt;systemctl list-units --type=service&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= XFCE4 =&lt;br /&gt;
* Set the frequency to 30 hz&lt;br /&gt;
* xrandr --output HDMI-0 --scale .75x.75&lt;br /&gt;
== Tooltips ==&lt;br /&gt;
Put this in ~/.config/gtk-3.0/gtk.css (create the file if needed).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tooltip {&lt;br /&gt;
    opacity: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tooltip {&lt;br /&gt;
    color: transparent;&lt;br /&gt;
    background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Category:Linux&amp;diff=5581</id>
		<title>Category:Linux</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Category:Linux&amp;diff=5581"/>
		<updated>2025-12-31T08:11:16Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* USB Connect */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hacking]]&lt;br /&gt;
= See Also =&lt;br /&gt;
* [[CLI_Fu]]&lt;br /&gt;
= Android Connect =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ adb devices&lt;br /&gt;
$ adb shell ls /storage/sdcard1/book/scifi&lt;br /&gt;
$ adb push Martha_Wells/  /storage/sdcard1/book/scifi/Martha_Wells&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Audio =&lt;br /&gt;
See: [[Category:Media]]&lt;br /&gt;
= Backports =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt install -t bookworm-backports incus&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
= Battery =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt install tlp tlp-rdw&lt;br /&gt;
sudo nano /etc/tlp.conf&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Find these lines (or add them if they don't exist):&lt;br /&gt;
```&lt;br /&gt;
START_CHARGE_THRESH_BAT0=75&lt;br /&gt;
STOP_CHARGE_THRESH_BAT0=80&lt;br /&gt;
sudo systemctl enable tlp&lt;br /&gt;
sudo systemctl start tlp&lt;br /&gt;
sudo tlp-stat -b&lt;br /&gt;
# override for full charge (if wanted):&lt;br /&gt;
sudo tlp fullcharge&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Cell Phone / Mobile =&lt;br /&gt;
== USB Connect ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Debian/Ubuntu&lt;br /&gt;
sudo apt install mtp-tools jmtpfs&lt;br /&gt;
&lt;br /&gt;
# Arch&lt;br /&gt;
sudo pacman -S mtpfs jmtpfs&lt;br /&gt;
&lt;br /&gt;
# Fedora&lt;br /&gt;
sudo dnf install jmtpfs&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Enable USB debugging/File Transfer on phone:&lt;br /&gt;
## Plug in phone&lt;br /&gt;
## Pull down notification shade&lt;br /&gt;
## Tap &amp;quot;USB for...&amp;quot; notification&lt;br /&gt;
## Select &amp;quot;File Transfer&amp;quot; or &amp;quot;MTP&amp;quot; mode&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir ~/phone&lt;br /&gt;
jmtpfs ~/phone&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Do things.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
fusermount -u ~/phone&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Cinnamon =&lt;br /&gt;
== Workspaces ==&lt;br /&gt;
* Control-Alt-UpArrow: show workspaces&lt;br /&gt;
* add workspaces: https://unix.stackexchange.com/questions/57311/how-do-i-change-the-number-of-available-workspaces-in-cinnamon&lt;br /&gt;
== Keybindings (from GPT) ==&lt;br /&gt;
In the Cinnamon desktop environment, the behavior you’re experiencing with the Alt key and mouse clicks is likely related to window management settings, particularly those concerning window dragging or resizing. Cinnamon uses the Alt key as a modifier for certain window actions by default. Here’s how you can investigate and adjust these settings:&lt;br /&gt;
&lt;br /&gt;
=== System Settings ===&lt;br /&gt;
&lt;br /&gt;
# '''Window Tiling and Edge Flip''': Navigate to System Settings &amp;amp;gt; Windows &amp;amp;gt; Behavior. Here, you’ll find various options related to window actions. Although it may not directly mention the Alt key, it’s a good place to start.&lt;br /&gt;
# '''Window Snapping''': While in the Windows section, also check settings related to window snapping or edge resistance. Sometimes, these features can interfere with normal mouse operations.&lt;br /&gt;
&lt;br /&gt;
=== Keyboard Shortcuts ===&lt;br /&gt;
&lt;br /&gt;
# '''Keyboard Shortcuts''': Go to System Settings &amp;amp;gt; Keyboard &amp;amp;gt; Shortcuts. Look through the categories for any actions bound to Alt+Click. You’re most interested in shortcuts under the “Windows” or “System” categories, but it’s worth checking others in case of custom bindings.&lt;br /&gt;
# Extended ASCII: &amp;lt;tt&amp;gt;setxkbmap -option compose:rctrl&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Dconf Editor ===&lt;br /&gt;
&lt;br /&gt;
If the above steps don’t reveal any useful settings to change, you might need to delve into dconf settings. Cinnamon, like GNOME, stores many of its configurations in dconf. Use the Dconf Editor to explore these settings, but proceed with caution—incorrect changes can affect your desktop’s behavior.&lt;br /&gt;
&lt;br /&gt;
# '''Install Dconf Editor''': If you don’t have it installed, you can usually find it in your package manager. Install it via your package manager or by running a command like &amp;lt;code&amp;gt;sudo apt-get install dconf-editor&amp;lt;/code&amp;gt; in the terminal.&lt;br /&gt;
# '''Explore Cinnamon Settings''': Open Dconf Editor and navigate to the &amp;lt;code&amp;gt;/org/cinnamon/&amp;lt;/code&amp;gt; path. Look for settings related to mouse or window management, particularly anything that might involve modifier keys like Alt.&lt;br /&gt;
# '''Check GNOME Settings''': Since Cinnamon is forked from GNOME, some underlying settings might still reside in GNOME’s namespace. Check &amp;lt;code&amp;gt;/org/gnome/desktop/wm/&amp;lt;/code&amp;gt; preferences for anything related to keybindings or mouse actions.&lt;br /&gt;
&lt;br /&gt;
=== Looking Elsewhere ===&lt;br /&gt;
&lt;br /&gt;
* '''Cinnamon Version''': Ensure your Cinnamon and Linux Mint (assuming you’re using Mint) are up to date. Sometimes, behavior changes or bugs are fixed in newer versions.&lt;br /&gt;
* '''Community Forums and Support''': If the settings within your control don’t seem to affect this behavior, consider asking for help on the Linux Mint forums, Cinnamon’s GitHub issues page, or other community support channels. It’s possible other users have encountered and solved this issue, or it might be an undocumented feature or bug.&lt;br /&gt;
&lt;br /&gt;
By investigating these areas, you should be able to identify and adjust any settings causing the Alt key to capture mouse clicks differently than expected.&lt;br /&gt;
&lt;br /&gt;
== Blender Workaround ==&lt;br /&gt;
Alt is necessary for example to select a loop of edges. I use left button to select things in blender (not the default right button) so Alt + Left button in blender is to select an edge loop (you do this a lot of times) but this is also to grab a window in Linux so blender does nothing.&lt;br /&gt;
&lt;br /&gt;
So I finally managed to find a workaround (better than going to the menu in blender and edges/ select edgeloop using the mouse that I was using (well, really I modified the w menu to have it as first entry as I have also the edge, faces, vertices menus in the w menu). So the way is to do this:&lt;br /&gt;
&lt;br /&gt;
In Cinnamon Settings / Keyboard / Keyboard shortcuts: Select Cinnamon to the left and then to the right you see “Menu button” is mapped to Super_L (the key between ctr and alt). Click on it to change it and push backspace to delete so it is “unassigned”. Or perhaps you want map this showing of the menu to other key like Super_R but I just use the mouse to go to the menu. Now I have Super_L free to use in blender instead Alt.&lt;br /&gt;
&lt;br /&gt;
So in Blender: User Preferences / Input and in 3DView/Mesh/ there are two Loop Select, first one using Alt + mouse select and the second Shift + Alt + mouse select. Change in both: uncheck Alt and check Cmd to the right of Alt. Now when selecting an edge loop I use Cmd + mouse select and Shift+Cmd+mouse select for adding an edge loop to the selection.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Control-D =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
set -o ignoreeof&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Documents =&lt;br /&gt;
== Pandoc ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pandoc -f markdown -t mediawiki foo.md &amp;gt; foo.mw&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== PDF to Images ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
convert -density 300 -colorspace Gray input.pdf page-%d.png&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Find =&lt;br /&gt;
== Remove Files Under 4 Blocks ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
find . -size -4b -print0 | xargs -0 rm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Firefox =&lt;br /&gt;
https://old.reddit.com/r/programming/comments/18v16ee/in_2024_please_switch_to_firefox/&lt;br /&gt;
== Updates ==&lt;br /&gt;
Kill Updates With Fire: https://support.mozilla.org/en-US/questions/1327455&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cat /usr/local/share/firefox/distribution/policies.json &lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;policies&amp;quot;: {&lt;br /&gt;
    &amp;quot;DisableAppUpdate&amp;quot;: true&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Containers ==&lt;br /&gt;
* https://support.mozilla.org/en-US/kb/how-use-firefox-containers&lt;br /&gt;
== Secure Connection Failed ==&lt;br /&gt;
# In the Location bar, type about:config and press Enter. The about:config &amp;quot;This might void your warranty!&amp;quot; warning page may appear.&lt;br /&gt;
# Click I'll be careful, I promise! to continue to the about:config page.&lt;br /&gt;
# copy the next security.ssl.enable_ocsp_stapling and paste it in the search field&lt;br /&gt;
# double-click on it to make it false&lt;br /&gt;
# close the page, exit firefox and restart it.&lt;br /&gt;
&lt;br /&gt;
= JSON =&lt;br /&gt;
== CLI JSONL ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
for file in *.json ; do jq -c . &amp;quot;$file&amp;quot;; done &amp;gt; ../000-combined.jsonl&lt;br /&gt;
jq '.&amp;quot;original title&amp;quot;' ../000-combined.jsonl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Keybindings =&lt;br /&gt;
== C-M-&amp;lt;backspace&amp;gt; Kill X Server ==&lt;br /&gt;
Preferences &amp;gt; Keyboard &amp;gt; Layouts &amp;gt; Options &amp;gt; Key Sequence to kill the X Server&lt;br /&gt;
== Checking ==&lt;br /&gt;
'''xev''': Launches a window that logs key events.&lt;br /&gt;
== Extended ASCII ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
setxkbmap -option compose:rctrl&lt;br /&gt;
setxkbmap -option compose:rwin&lt;br /&gt;
setxkbmap -option compose:menu&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* compose + , then c = c cedilla&lt;br /&gt;
* compose + ' then E = E aigu&lt;br /&gt;
* compose + ` then e = e grave&lt;br /&gt;
* compose + &amp;quot; then u = u german metal letter&lt;br /&gt;
* compose + = then e = Eurodollar symbol&lt;br /&gt;
&lt;br /&gt;
= Performance =&lt;br /&gt;
== Analyzing System Use ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ sudo perf top&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Peripherals =&lt;br /&gt;
== Wacom Tablet ==&lt;br /&gt;
* kde_wacom_tabletfinder&lt;br /&gt;
* https://krita.org/en/features/&lt;br /&gt;
&lt;br /&gt;
= Permissions =&lt;br /&gt;
== Groups ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo usermod -aG incus $USER&lt;br /&gt;
newgrp incus&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Printing =&lt;br /&gt;
== Book Binding ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install texlive-extra-utils&lt;br /&gt;
pdfbook2 --inner-margin=200 input.pdf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This command processes input.pdf and generates input-book.pdf with the specified inner margin.&lt;br /&gt;
&lt;br /&gt;
= Sleep =&lt;br /&gt;
== Inhibit Sleep? ==&lt;br /&gt;
=== In Test ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/systemd/sleep.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Removed from Test 15:28 ====&lt;br /&gt;
failed at 15:38&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/usr/bin/xset s noblank&lt;br /&gt;
/usr/bin/xset s off&lt;br /&gt;
/usr/bin/xset dpms 0 0 0&lt;br /&gt;
/usr/bin/xset -dpms&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Added to Test 15:39 ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/usr/bin/xset s noblank&lt;br /&gt;
/usr/bin/xset s off&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Added to .bashrc at 16:05 ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
xset s off&lt;br /&gt;
xset -dpms&lt;br /&gt;
xset s noblank&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
worked, but .bashrc is the wrong place for it&lt;br /&gt;
==== 16:31 moved to .xsessionrc ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
xset s off&lt;br /&gt;
xset -dpms&lt;br /&gt;
xset s noblank&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
success, 16:42:40 second test after reboot&lt;br /&gt;
&lt;br /&gt;
=== Not Sufficient ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
systemd-inhibit --what=idle:sleep --who=&amp;quot;User&amp;quot; --why=&amp;quot;Prevent sleep&amp;quot; sleep infinity&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/systemd/logind.conf&lt;br /&gt;
IdleAction=ignore&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Storage =&lt;br /&gt;
== Mounting ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ udisksctl unmount -b /dev/sdb2&lt;br /&gt;
$ udisksctl mount -b /dev/sdb2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=== NTFS on Linux ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bash&lt;br /&gt;
sudo apt install ntfs-3g&lt;br /&gt;
&lt;br /&gt;
bash&lt;br /&gt;
sudo mount -t ntfs-3g /dev/sdX1 /mnt/mountpoint&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Identifying ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
lsblk # to list the storage devices&lt;br /&gt;
blkid # to show the filesystem type&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ext4 on Windows ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Mount Disk:&lt;br /&gt;
wsl --mount &amp;lt;DiskPath&amp;gt;&lt;br /&gt;
# To list the available disks in Windows, run:&lt;br /&gt;
wmic diskdrive list brief&lt;br /&gt;
# To unmount and detach the disk from WSL 2, run&lt;br /&gt;
wsl --unmount &amp;lt;Diskpath&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Renaming ==&lt;br /&gt;
EXT[234]&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo e2label /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
FAT32&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo dosfslabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
NTFS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo ntfslabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
exfat&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo exfatlabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Systemctl =&lt;br /&gt;
&amp;lt;pre&amp;gt;systemctl list-units --type=service&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= XFCE4 =&lt;br /&gt;
* Set the frequency to 30 hz&lt;br /&gt;
* xrandr --output HDMI-0 --scale .75x.75&lt;br /&gt;
== Tooltips ==&lt;br /&gt;
Put this in ~/.config/gtk-3.0/gtk.css (create the file if needed).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tooltip {&lt;br /&gt;
    opacity: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tooltip {&lt;br /&gt;
    color: transparent;&lt;br /&gt;
    background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Category:Linux&amp;diff=5580</id>
		<title>Category:Linux</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Category:Linux&amp;diff=5580"/>
		<updated>2025-12-31T08:09:13Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hacking]]&lt;br /&gt;
= See Also =&lt;br /&gt;
* [[CLI_Fu]]&lt;br /&gt;
= Android Connect =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ adb devices&lt;br /&gt;
$ adb shell ls /storage/sdcard1/book/scifi&lt;br /&gt;
$ adb push Martha_Wells/  /storage/sdcard1/book/scifi/Martha_Wells&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Audio =&lt;br /&gt;
See: [[Category:Media]]&lt;br /&gt;
= Backports =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt install -t bookworm-backports incus&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
= Battery =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt install tlp tlp-rdw&lt;br /&gt;
sudo nano /etc/tlp.conf&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Find these lines (or add them if they don't exist):&lt;br /&gt;
```&lt;br /&gt;
START_CHARGE_THRESH_BAT0=75&lt;br /&gt;
STOP_CHARGE_THRESH_BAT0=80&lt;br /&gt;
sudo systemctl enable tlp&lt;br /&gt;
sudo systemctl start tlp&lt;br /&gt;
sudo tlp-stat -b&lt;br /&gt;
# override for full charge (if wanted):&lt;br /&gt;
sudo tlp fullcharge&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Cell Phone / Mobile =&lt;br /&gt;
== USB Connect ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Debian/Ubuntu&lt;br /&gt;
sudo apt install mtp-tools jmtpfs&lt;br /&gt;
&lt;br /&gt;
# Arch&lt;br /&gt;
sudo pacman -S mtpfs jmtpfs&lt;br /&gt;
&lt;br /&gt;
# Fedora&lt;br /&gt;
sudo dnf install jmtpfs&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Cinnamon =&lt;br /&gt;
== Workspaces ==&lt;br /&gt;
* Control-Alt-UpArrow: show workspaces&lt;br /&gt;
* add workspaces: https://unix.stackexchange.com/questions/57311/how-do-i-change-the-number-of-available-workspaces-in-cinnamon&lt;br /&gt;
== Keybindings (from GPT) ==&lt;br /&gt;
In the Cinnamon desktop environment, the behavior you’re experiencing with the Alt key and mouse clicks is likely related to window management settings, particularly those concerning window dragging or resizing. Cinnamon uses the Alt key as a modifier for certain window actions by default. Here’s how you can investigate and adjust these settings:&lt;br /&gt;
&lt;br /&gt;
=== System Settings ===&lt;br /&gt;
&lt;br /&gt;
# '''Window Tiling and Edge Flip''': Navigate to System Settings &amp;amp;gt; Windows &amp;amp;gt; Behavior. Here, you’ll find various options related to window actions. Although it may not directly mention the Alt key, it’s a good place to start.&lt;br /&gt;
# '''Window Snapping''': While in the Windows section, also check settings related to window snapping or edge resistance. Sometimes, these features can interfere with normal mouse operations.&lt;br /&gt;
&lt;br /&gt;
=== Keyboard Shortcuts ===&lt;br /&gt;
&lt;br /&gt;
# '''Keyboard Shortcuts''': Go to System Settings &amp;amp;gt; Keyboard &amp;amp;gt; Shortcuts. Look through the categories for any actions bound to Alt+Click. You’re most interested in shortcuts under the “Windows” or “System” categories, but it’s worth checking others in case of custom bindings.&lt;br /&gt;
# Extended ASCII: &amp;lt;tt&amp;gt;setxkbmap -option compose:rctrl&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Dconf Editor ===&lt;br /&gt;
&lt;br /&gt;
If the above steps don’t reveal any useful settings to change, you might need to delve into dconf settings. Cinnamon, like GNOME, stores many of its configurations in dconf. Use the Dconf Editor to explore these settings, but proceed with caution—incorrect changes can affect your desktop’s behavior.&lt;br /&gt;
&lt;br /&gt;
# '''Install Dconf Editor''': If you don’t have it installed, you can usually find it in your package manager. Install it via your package manager or by running a command like &amp;lt;code&amp;gt;sudo apt-get install dconf-editor&amp;lt;/code&amp;gt; in the terminal.&lt;br /&gt;
# '''Explore Cinnamon Settings''': Open Dconf Editor and navigate to the &amp;lt;code&amp;gt;/org/cinnamon/&amp;lt;/code&amp;gt; path. Look for settings related to mouse or window management, particularly anything that might involve modifier keys like Alt.&lt;br /&gt;
# '''Check GNOME Settings''': Since Cinnamon is forked from GNOME, some underlying settings might still reside in GNOME’s namespace. Check &amp;lt;code&amp;gt;/org/gnome/desktop/wm/&amp;lt;/code&amp;gt; preferences for anything related to keybindings or mouse actions.&lt;br /&gt;
&lt;br /&gt;
=== Looking Elsewhere ===&lt;br /&gt;
&lt;br /&gt;
* '''Cinnamon Version''': Ensure your Cinnamon and Linux Mint (assuming you’re using Mint) are up to date. Sometimes, behavior changes or bugs are fixed in newer versions.&lt;br /&gt;
* '''Community Forums and Support''': If the settings within your control don’t seem to affect this behavior, consider asking for help on the Linux Mint forums, Cinnamon’s GitHub issues page, or other community support channels. It’s possible other users have encountered and solved this issue, or it might be an undocumented feature or bug.&lt;br /&gt;
&lt;br /&gt;
By investigating these areas, you should be able to identify and adjust any settings causing the Alt key to capture mouse clicks differently than expected.&lt;br /&gt;
&lt;br /&gt;
== Blender Workaround ==&lt;br /&gt;
Alt is necessary for example to select a loop of edges. I use left button to select things in blender (not the default right button) so Alt + Left button in blender is to select an edge loop (you do this a lot of times) but this is also to grab a window in Linux so blender does nothing.&lt;br /&gt;
&lt;br /&gt;
So I finally managed to find a workaround (better than going to the menu in blender and edges/ select edgeloop using the mouse that I was using (well, really I modified the w menu to have it as first entry as I have also the edge, faces, vertices menus in the w menu). So the way is to do this:&lt;br /&gt;
&lt;br /&gt;
In Cinnamon Settings / Keyboard / Keyboard shortcuts: Select Cinnamon to the left and then to the right you see “Menu button” is mapped to Super_L (the key between ctr and alt). Click on it to change it and push backspace to delete so it is “unassigned”. Or perhaps you want map this showing of the menu to other key like Super_R but I just use the mouse to go to the menu. Now I have Super_L free to use in blender instead Alt.&lt;br /&gt;
&lt;br /&gt;
So in Blender: User Preferences / Input and in 3DView/Mesh/ there are two Loop Select, first one using Alt + mouse select and the second Shift + Alt + mouse select. Change in both: uncheck Alt and check Cmd to the right of Alt. Now when selecting an edge loop I use Cmd + mouse select and Shift+Cmd+mouse select for adding an edge loop to the selection.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Control-D =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
set -o ignoreeof&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Documents =&lt;br /&gt;
== Pandoc ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pandoc -f markdown -t mediawiki foo.md &amp;gt; foo.mw&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== PDF to Images ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
convert -density 300 -colorspace Gray input.pdf page-%d.png&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Find =&lt;br /&gt;
== Remove Files Under 4 Blocks ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
find . -size -4b -print0 | xargs -0 rm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Firefox =&lt;br /&gt;
https://old.reddit.com/r/programming/comments/18v16ee/in_2024_please_switch_to_firefox/&lt;br /&gt;
== Updates ==&lt;br /&gt;
Kill Updates With Fire: https://support.mozilla.org/en-US/questions/1327455&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cat /usr/local/share/firefox/distribution/policies.json &lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;policies&amp;quot;: {&lt;br /&gt;
    &amp;quot;DisableAppUpdate&amp;quot;: true&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Containers ==&lt;br /&gt;
* https://support.mozilla.org/en-US/kb/how-use-firefox-containers&lt;br /&gt;
== Secure Connection Failed ==&lt;br /&gt;
# In the Location bar, type about:config and press Enter. The about:config &amp;quot;This might void your warranty!&amp;quot; warning page may appear.&lt;br /&gt;
# Click I'll be careful, I promise! to continue to the about:config page.&lt;br /&gt;
# copy the next security.ssl.enable_ocsp_stapling and paste it in the search field&lt;br /&gt;
# double-click on it to make it false&lt;br /&gt;
# close the page, exit firefox and restart it.&lt;br /&gt;
&lt;br /&gt;
= JSON =&lt;br /&gt;
== CLI JSONL ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
for file in *.json ; do jq -c . &amp;quot;$file&amp;quot;; done &amp;gt; ../000-combined.jsonl&lt;br /&gt;
jq '.&amp;quot;original title&amp;quot;' ../000-combined.jsonl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Keybindings =&lt;br /&gt;
== C-M-&amp;lt;backspace&amp;gt; Kill X Server ==&lt;br /&gt;
Preferences &amp;gt; Keyboard &amp;gt; Layouts &amp;gt; Options &amp;gt; Key Sequence to kill the X Server&lt;br /&gt;
== Checking ==&lt;br /&gt;
'''xev''': Launches a window that logs key events.&lt;br /&gt;
== Extended ASCII ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
setxkbmap -option compose:rctrl&lt;br /&gt;
setxkbmap -option compose:rwin&lt;br /&gt;
setxkbmap -option compose:menu&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* compose + , then c = c cedilla&lt;br /&gt;
* compose + ' then E = E aigu&lt;br /&gt;
* compose + ` then e = e grave&lt;br /&gt;
* compose + &amp;quot; then u = u german metal letter&lt;br /&gt;
* compose + = then e = Eurodollar symbol&lt;br /&gt;
&lt;br /&gt;
= Performance =&lt;br /&gt;
== Analyzing System Use ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ sudo perf top&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Peripherals =&lt;br /&gt;
== Wacom Tablet ==&lt;br /&gt;
* kde_wacom_tabletfinder&lt;br /&gt;
* https://krita.org/en/features/&lt;br /&gt;
&lt;br /&gt;
= Permissions =&lt;br /&gt;
== Groups ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo usermod -aG incus $USER&lt;br /&gt;
newgrp incus&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Printing =&lt;br /&gt;
== Book Binding ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install texlive-extra-utils&lt;br /&gt;
pdfbook2 --inner-margin=200 input.pdf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This command processes input.pdf and generates input-book.pdf with the specified inner margin.&lt;br /&gt;
&lt;br /&gt;
= Sleep =&lt;br /&gt;
== Inhibit Sleep? ==&lt;br /&gt;
=== In Test ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/systemd/sleep.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Removed from Test 15:28 ====&lt;br /&gt;
failed at 15:38&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/usr/bin/xset s noblank&lt;br /&gt;
/usr/bin/xset s off&lt;br /&gt;
/usr/bin/xset dpms 0 0 0&lt;br /&gt;
/usr/bin/xset -dpms&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Added to Test 15:39 ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/usr/bin/xset s noblank&lt;br /&gt;
/usr/bin/xset s off&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Added to .bashrc at 16:05 ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
xset s off&lt;br /&gt;
xset -dpms&lt;br /&gt;
xset s noblank&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
worked, but .bashrc is the wrong place for it&lt;br /&gt;
==== 16:31 moved to .xsessionrc ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
xset s off&lt;br /&gt;
xset -dpms&lt;br /&gt;
xset s noblank&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
success, 16:42:40 second test after reboot&lt;br /&gt;
&lt;br /&gt;
=== Not Sufficient ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
systemd-inhibit --what=idle:sleep --who=&amp;quot;User&amp;quot; --why=&amp;quot;Prevent sleep&amp;quot; sleep infinity&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/systemd/logind.conf&lt;br /&gt;
IdleAction=ignore&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Storage =&lt;br /&gt;
== Mounting ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ udisksctl unmount -b /dev/sdb2&lt;br /&gt;
$ udisksctl mount -b /dev/sdb2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=== NTFS on Linux ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bash&lt;br /&gt;
sudo apt install ntfs-3g&lt;br /&gt;
&lt;br /&gt;
bash&lt;br /&gt;
sudo mount -t ntfs-3g /dev/sdX1 /mnt/mountpoint&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Identifying ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
lsblk # to list the storage devices&lt;br /&gt;
blkid # to show the filesystem type&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ext4 on Windows ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Mount Disk:&lt;br /&gt;
wsl --mount &amp;lt;DiskPath&amp;gt;&lt;br /&gt;
# To list the available disks in Windows, run:&lt;br /&gt;
wmic diskdrive list brief&lt;br /&gt;
# To unmount and detach the disk from WSL 2, run&lt;br /&gt;
wsl --unmount &amp;lt;Diskpath&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Renaming ==&lt;br /&gt;
EXT[234]&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo e2label /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
FAT32&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo dosfslabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
NTFS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo ntfslabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
exfat&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo exfatlabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Systemctl =&lt;br /&gt;
&amp;lt;pre&amp;gt;systemctl list-units --type=service&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= XFCE4 =&lt;br /&gt;
* Set the frequency to 30 hz&lt;br /&gt;
* xrandr --output HDMI-0 --scale .75x.75&lt;br /&gt;
== Tooltips ==&lt;br /&gt;
Put this in ~/.config/gtk-3.0/gtk.css (create the file if needed).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tooltip {&lt;br /&gt;
    opacity: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tooltip {&lt;br /&gt;
    color: transparent;&lt;br /&gt;
    background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5579</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5579"/>
		<updated>2025-12-31T08:06:40Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* My Reaction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
** Some gods are not benevolent.&lt;br /&gt;
** Some fields intentionally eschew morality (science prefers truth, business prefers wealth extraction).&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=Category:Linux&amp;diff=5578</id>
		<title>Category:Linux</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=Category:Linux&amp;diff=5578"/>
		<updated>2025-12-24T17:27:27Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Backports */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hacking]]&lt;br /&gt;
= See Also =&lt;br /&gt;
* [[CLI_Fu]]&lt;br /&gt;
= Android Connect =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ adb devices&lt;br /&gt;
$ adb shell ls /storage/sdcard1/book/scifi&lt;br /&gt;
$ adb push Martha_Wells/  /storage/sdcard1/book/scifi/Martha_Wells&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Audio =&lt;br /&gt;
See: [[Category:Media]]&lt;br /&gt;
= Backports =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt install -t bookworm-backports incus&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
= Battery =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt install tlp tlp-rdw&lt;br /&gt;
sudo nano /etc/tlp.conf&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Find these lines (or add them if they don't exist):&lt;br /&gt;
```&lt;br /&gt;
START_CHARGE_THRESH_BAT0=75&lt;br /&gt;
STOP_CHARGE_THRESH_BAT0=80&lt;br /&gt;
sudo systemctl enable tlp&lt;br /&gt;
sudo systemctl start tlp&lt;br /&gt;
sudo tlp-stat -b&lt;br /&gt;
# override for full charge (if wanted):&lt;br /&gt;
sudo tlp fullcharge&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Control-D =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
set -o ignoreeof&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Cinnamon =&lt;br /&gt;
== Workspaces ==&lt;br /&gt;
* Control-Alt-UpArrow: show workspaces&lt;br /&gt;
* add workspaces: https://unix.stackexchange.com/questions/57311/how-do-i-change-the-number-of-available-workspaces-in-cinnamon&lt;br /&gt;
== Keybindings (from GPT) ==&lt;br /&gt;
In the Cinnamon desktop environment, the behavior you’re experiencing with the Alt key and mouse clicks is likely related to window management settings, particularly those concerning window dragging or resizing. Cinnamon uses the Alt key as a modifier for certain window actions by default. Here’s how you can investigate and adjust these settings:&lt;br /&gt;
&lt;br /&gt;
=== System Settings ===&lt;br /&gt;
&lt;br /&gt;
# '''Window Tiling and Edge Flip''': Navigate to System Settings &amp;amp;gt; Windows &amp;amp;gt; Behavior. Here, you’ll find various options related to window actions. Although it may not directly mention the Alt key, it’s a good place to start.&lt;br /&gt;
# '''Window Snapping''': While in the Windows section, also check settings related to window snapping or edge resistance. Sometimes, these features can interfere with normal mouse operations.&lt;br /&gt;
&lt;br /&gt;
=== Keyboard Shortcuts ===&lt;br /&gt;
&lt;br /&gt;
# '''Keyboard Shortcuts''': Go to System Settings &amp;amp;gt; Keyboard &amp;amp;gt; Shortcuts. Look through the categories for any actions bound to Alt+Click. You’re most interested in shortcuts under the “Windows” or “System” categories, but it’s worth checking others in case of custom bindings.&lt;br /&gt;
# Extended ASCII: &amp;lt;tt&amp;gt;setxkbmap -option compose:rctrl&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Dconf Editor ===&lt;br /&gt;
&lt;br /&gt;
If the above steps don’t reveal any useful settings to change, you might need to delve into dconf settings. Cinnamon, like GNOME, stores many of its configurations in dconf. Use the Dconf Editor to explore these settings, but proceed with caution—incorrect changes can affect your desktop’s behavior.&lt;br /&gt;
&lt;br /&gt;
# '''Install Dconf Editor''': If you don’t have it installed, you can usually find it in your package manager. Install it via your package manager or by running a command like &amp;lt;code&amp;gt;sudo apt-get install dconf-editor&amp;lt;/code&amp;gt; in the terminal.&lt;br /&gt;
# '''Explore Cinnamon Settings''': Open Dconf Editor and navigate to the &amp;lt;code&amp;gt;/org/cinnamon/&amp;lt;/code&amp;gt; path. Look for settings related to mouse or window management, particularly anything that might involve modifier keys like Alt.&lt;br /&gt;
# '''Check GNOME Settings''': Since Cinnamon is forked from GNOME, some underlying settings might still reside in GNOME’s namespace. Check &amp;lt;code&amp;gt;/org/gnome/desktop/wm/&amp;lt;/code&amp;gt; preferences for anything related to keybindings or mouse actions.&lt;br /&gt;
&lt;br /&gt;
=== Looking Elsewhere ===&lt;br /&gt;
&lt;br /&gt;
* '''Cinnamon Version''': Ensure your Cinnamon and Linux Mint (assuming you’re using Mint) are up to date. Sometimes, behavior changes or bugs are fixed in newer versions.&lt;br /&gt;
* '''Community Forums and Support''': If the settings within your control don’t seem to affect this behavior, consider asking for help on the Linux Mint forums, Cinnamon’s GitHub issues page, or other community support channels. It’s possible other users have encountered and solved this issue, or it might be an undocumented feature or bug.&lt;br /&gt;
&lt;br /&gt;
By investigating these areas, you should be able to identify and adjust any settings causing the Alt key to capture mouse clicks differently than expected.&lt;br /&gt;
&lt;br /&gt;
== Blender Workaround ==&lt;br /&gt;
Alt is necessary for example to select a loop of edges. I use left button to select things in blender (not the default right button) so Alt + Left button in blender is to select an edge loop (you do this a lot of times) but this is also to grab a window in Linux so blender does nothing.&lt;br /&gt;
&lt;br /&gt;
So I finally managed to find a workaround (better than going to the menu in blender and edges/ select edgeloop using the mouse that I was using (well, really I modified the w menu to have it as first entry as I have also the edge, faces, vertices menus in the w menu). So the way is to do this:&lt;br /&gt;
&lt;br /&gt;
In Cinnamon Settings / Keyboard / Keyboard shortcuts: Select Cinnamon to the left and then to the right you see “Menu button” is mapped to Super_L (the key between ctr and alt). Click on it to change it and push backspace to delete so it is “unassigned”. Or perhaps you want map this showing of the menu to other key like Super_R but I just use the mouse to go to the menu. Now I have Super_L free to use in blender instead Alt.&lt;br /&gt;
&lt;br /&gt;
So in Blender: User Preferences / Input and in 3DView/Mesh/ there are two Loop Select, first one using Alt + mouse select and the second Shift + Alt + mouse select. Change in both: uncheck Alt and check Cmd to the right of Alt. Now when selecting an edge loop I use Cmd + mouse select and Shift+Cmd+mouse select for adding an edge loop to the selection.&lt;br /&gt;
= Documents =&lt;br /&gt;
== Pandoc ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
pandoc -f markdown -t mediawiki foo.md &amp;gt; foo.mw&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== PDF to Images ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
convert -density 300 -colorspace Gray input.pdf page-%d.png&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Find =&lt;br /&gt;
== Remove Files Under 4 Blocks ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
find . -size -4b -print0 | xargs -0 rm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Firefox =&lt;br /&gt;
https://old.reddit.com/r/programming/comments/18v16ee/in_2024_please_switch_to_firefox/&lt;br /&gt;
== Updates ==&lt;br /&gt;
Kill Updates With Fire: https://support.mozilla.org/en-US/questions/1327455&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cat /usr/local/share/firefox/distribution/policies.json &lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;policies&amp;quot;: {&lt;br /&gt;
    &amp;quot;DisableAppUpdate&amp;quot;: true&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Containers ==&lt;br /&gt;
* https://support.mozilla.org/en-US/kb/how-use-firefox-containers&lt;br /&gt;
== Secure Connection Failed ==&lt;br /&gt;
# In the Location bar, type about:config and press Enter. The about:config &amp;quot;This might void your warranty!&amp;quot; warning page may appear.&lt;br /&gt;
# Click I'll be careful, I promise! to continue to the about:config page.&lt;br /&gt;
# copy the next security.ssl.enable_ocsp_stapling and paste it in the search field&lt;br /&gt;
# double-click on it to make it false&lt;br /&gt;
# close the page, exit firefox and restart it.&lt;br /&gt;
&lt;br /&gt;
= JSON =&lt;br /&gt;
== CLI JSONL ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
for file in *.json ; do jq -c . &amp;quot;$file&amp;quot;; done &amp;gt; ../000-combined.jsonl&lt;br /&gt;
jq '.&amp;quot;original title&amp;quot;' ../000-combined.jsonl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Keybindings =&lt;br /&gt;
== C-M-&amp;lt;backspace&amp;gt; Kill X Server ==&lt;br /&gt;
Preferences &amp;gt; Keyboard &amp;gt; Layouts &amp;gt; Options &amp;gt; Key Sequence to kill the X Server&lt;br /&gt;
== Checking ==&lt;br /&gt;
'''xev''': Launches a window that logs key events.&lt;br /&gt;
== Extended ASCII ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
setxkbmap -option compose:rctrl&lt;br /&gt;
setxkbmap -option compose:rwin&lt;br /&gt;
setxkbmap -option compose:menu&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* compose + , then c = c cedilla&lt;br /&gt;
* compose + ' then E = E aigu&lt;br /&gt;
* compose + ` then e = e grave&lt;br /&gt;
* compose + &amp;quot; then u = u german metal letter&lt;br /&gt;
* compose + = then e = Eurodollar symbol&lt;br /&gt;
&lt;br /&gt;
= Performance =&lt;br /&gt;
== Analyzing System Use ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ sudo perf top&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Peripherals =&lt;br /&gt;
== Wacom Tablet ==&lt;br /&gt;
* kde_wacom_tabletfinder&lt;br /&gt;
* https://krita.org/en/features/&lt;br /&gt;
&lt;br /&gt;
= Permissions =&lt;br /&gt;
== Groups ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo usermod -aG incus $USER&lt;br /&gt;
newgrp incus&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Printing =&lt;br /&gt;
== Book Binding ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install texlive-extra-utils&lt;br /&gt;
pdfbook2 --inner-margin=200 input.pdf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This command processes input.pdf and generates input-book.pdf with the specified inner margin.&lt;br /&gt;
&lt;br /&gt;
= Sleep =&lt;br /&gt;
== Inhibit Sleep? ==&lt;br /&gt;
=== In Test ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/systemd/sleep.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Removed from Test 15:28 ====&lt;br /&gt;
failed at 15:38&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/usr/bin/xset s noblank&lt;br /&gt;
/usr/bin/xset s off&lt;br /&gt;
/usr/bin/xset dpms 0 0 0&lt;br /&gt;
/usr/bin/xset -dpms&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Added to Test 15:39 ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/usr/bin/xset s noblank&lt;br /&gt;
/usr/bin/xset s off&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Added to .bashrc at 16:05 ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
xset s off&lt;br /&gt;
xset -dpms&lt;br /&gt;
xset s noblank&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
worked, but .bashrc is the wrong place for it&lt;br /&gt;
==== 16:31 moved to .xsessionrc ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
xset s off&lt;br /&gt;
xset -dpms&lt;br /&gt;
xset s noblank&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
success, 16:42:40 second test after reboot&lt;br /&gt;
&lt;br /&gt;
=== Not Sufficient ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
systemd-inhibit --what=idle:sleep --who=&amp;quot;User&amp;quot; --why=&amp;quot;Prevent sleep&amp;quot; sleep infinity&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat /etc/systemd/logind.conf&lt;br /&gt;
IdleAction=ignore&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Storage =&lt;br /&gt;
== Mounting ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ udisksctl unmount -b /dev/sdb2&lt;br /&gt;
$ udisksctl mount -b /dev/sdb2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=== NTFS on Linux ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bash&lt;br /&gt;
sudo apt install ntfs-3g&lt;br /&gt;
&lt;br /&gt;
bash&lt;br /&gt;
sudo mount -t ntfs-3g /dev/sdX1 /mnt/mountpoint&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Identifying ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
lsblk # to list the storage devices&lt;br /&gt;
blkid # to show the filesystem type&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ext4 on Windows ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Mount Disk:&lt;br /&gt;
wsl --mount &amp;lt;DiskPath&amp;gt;&lt;br /&gt;
# To list the available disks in Windows, run:&lt;br /&gt;
wmic diskdrive list brief&lt;br /&gt;
# To unmount and detach the disk from WSL 2, run&lt;br /&gt;
wsl --unmount &amp;lt;Diskpath&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Renaming ==&lt;br /&gt;
EXT[234]&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo e2label /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
FAT32&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo dosfslabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
NTFS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo ntfslabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
exfat&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo exfatlabel /dev/sdXN new-label&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Systemctl =&lt;br /&gt;
&amp;lt;pre&amp;gt;systemctl list-units --type=service&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= XFCE4 =&lt;br /&gt;
* Set the frequency to 30 hz&lt;br /&gt;
* xrandr --output HDMI-0 --scale .75x.75&lt;br /&gt;
== Tooltips ==&lt;br /&gt;
Put this in ~/.config/gtk-3.0/gtk.css (create the file if needed).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tooltip {&lt;br /&gt;
    opacity: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tooltip {&lt;br /&gt;
    color: transparent;&lt;br /&gt;
    background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5577</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5577"/>
		<updated>2025-12-24T16:53:02Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Text */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Minimalist ====&lt;br /&gt;
In Critique of Pure Reason, Kant covered what could be approached by reason and science. Everything else he found to be off limits.&lt;br /&gt;
&lt;br /&gt;
In Critique of Practical Reason, he asks what then becomes of god, the soul, and free will?&lt;br /&gt;
&lt;br /&gt;
Short version: Practical reason covers what we believe because it is good for society - not because we have evidence. We assert that we have free will, not because there is evidence but so we feel responsible for our actions. We assert the existence of a god so we have a carrot and stick to keep us on the straight and narrow. And we assert the existence of the soul so we can be dream of praise and fear punishment beyond this fleeting mortal coil.&lt;br /&gt;
&lt;br /&gt;
And, yes; it took me 3 months to come up with that summary.&lt;br /&gt;
&lt;br /&gt;
But not without cause; wrestling with that is hard. If you are empathetic, Kant says your payoff for being kind is a phantasm you dupe yourself into. If you're a sociopath, Kant says there is no punishment in the afterlife, but you should pretend there is.&lt;br /&gt;
&lt;br /&gt;
If you're empathetic, like me, and you feel pain when you exploit others as though it had happened to you; but you also studied economics and worked in American extreme capitalism so you know how to make sausage - well, you've got to choose between losing at a game you know how to win, and hating yourself for winning.&lt;br /&gt;
&lt;br /&gt;
I really hope Hegel has something good for me, when I get there.&lt;br /&gt;
&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5576</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5576"/>
		<updated>2025-12-22T13:16:24Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* From Critique of Practical Reason */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction. Argumentum ad nauseum.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
** Note: The German idealists, particularly Hegel, are going to crack - or at least begin to crack - this nut.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5575</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5575"/>
		<updated>2025-12-22T12:59:25Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* From Critique of Practical Reason */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** Note: He was talking specifically about the problem of philosophy delving into the metaphysical. When the dialectic goes beyond what ''can'' be known, it is spinning its wheels. It might be fun, but it won't produce anything.&lt;br /&gt;
** In the realm of pure reason, however, he did not argue for an end of advancement. To self: avoid including things that suggest otherwise.&lt;br /&gt;
* The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
* Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5574</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5574"/>
		<updated>2025-12-22T12:49:31Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* From Critique of Practical Reason */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
&lt;br /&gt;
* The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
* Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
* For example, he was assuming Newtonian physics.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5573</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5573"/>
		<updated>2025-12-22T10:50:41Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Segue */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
&lt;br /&gt;
* The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
* Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
* But he was assuming Newtonian physics.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
==== Premise ====&lt;br /&gt;
Our sensations are the result of the thing itself, but we are not sensing the thing itself. As a result, we can posit anything we want about the thing itself. We could posit that the thing itself is actually made of green cheese, but consistently results in sensations that are consistent with blue cheese - when we are considering a wedge of roquefort.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5572</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5572"/>
		<updated>2025-12-22T09:56:58Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Intro */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
&lt;br /&gt;
* The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
* Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
* But he was assuming Newtonian physics.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?) Anyway: Practical Reason is exactly what it says on the tin; practical reason. The practical reason that leads to God, the soul, free will, morality, and everything.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5571</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5571"/>
		<updated>2025-12-22T09:56:02Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Intro */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
&lt;br /&gt;
* The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
* Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
* But he was assuming Newtonian physics.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
Like every great gestalt, it starts with drowning. I dive in at the deep end, and it seems like there's no bottom. I look up and the surface gets further and further away, and everything gets darker all around. But just as suddenly, it starts getting brighter and I pop back to the surface and look around, and everything seems so clear - if not only by comparison to the seemingly boundless murk from only a few days or weeks earlier. (this directly contradicts the end of the previous paragraph, yet it feels just as true - or poetical - WTF?)&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5570</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5570"/>
		<updated>2025-12-22T09:24:14Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Intro */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
&lt;br /&gt;
* The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
* Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
* But he was assuming Newtonian physics.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, my most personally challenging dive into a philosophical hypothesis. It is spectacular. I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5569</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5569"/>
		<updated>2025-12-22T09:23:11Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Segue */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
&lt;br /&gt;
* The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
* Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
* But he was assuming Newtonian physics.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
===== Intro =====&lt;br /&gt;
This has been, by far, the most challenging dive into a philosophical hypothesis I have ever had. It is spectacular.&lt;br /&gt;
&lt;br /&gt;
I haven't read it.&lt;br /&gt;
&lt;br /&gt;
What I did was listen to a summary of the reasoning that is presented. And that was sufficient to spark more than two months of reflection on what it means, and how I can reconcile Kant 2 with my own model of the world.&lt;br /&gt;
&lt;br /&gt;
Aside: I think that I will read Julie by Rousseau, rather than just a summary, because my understanding is that it is both an exploration of reason and an argument in favor of romanticism - that the experiencing of a thing is as important if not more so than the reason or reality of the thing. But I think that is not as necessary for Kant 2, or at least that there is a lot of meat on the bone from a summary of the reasoning in Kant 2, regardless of the prose itself.&lt;br /&gt;
&lt;br /&gt;
Anyway; my goal with each of these philosophy lectures is to get to two things:&lt;br /&gt;
# A belief that I understand what Cahoone says the philosopher was saying.&lt;br /&gt;
# A belief that I can square my world view with theirs with two premises:&lt;br /&gt;
## That I can assume the world as they knew it. Aristotle didn't know about quantum tunneling inside the human brain.&lt;br /&gt;
## They're not stupid. I can accept a difference of opinion, but not a disagreement about their chain of logic.&lt;br /&gt;
&lt;br /&gt;
Getting there with Kant 2 has required me to deeply reexamine my strongly held views on empathy, the supernatural, evolution, and quantum mechanics. I think I've gotten there, but I've thought that several times over the past two months.&lt;br /&gt;
===== Quantum Mechanics =====&lt;br /&gt;
===== Empathy Versus God =====&lt;br /&gt;
===== Why Suppose Benevolent Religion? =====&lt;br /&gt;
===== The Human Condition =====&lt;br /&gt;
The Human Condition: For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5568</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5568"/>
		<updated>2025-12-22T09:05:42Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Segue */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
&lt;br /&gt;
* The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
* Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
* But he was assuming Newtonian physics.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive. So now we have 80% of society with the ability to reason that cheating makes sense as long as you get away with it, who see others advance by cheating and getting away with it, who become losers when they choose not to play the game, and who experience guilt when the do. This is the human condition.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5567</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5567"/>
		<updated>2025-12-22T09:02:31Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Segue */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
&lt;br /&gt;
* The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
* Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
* But he was assuming Newtonian physics.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that those supernatural things remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5566</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5566"/>
		<updated>2025-12-22T09:01:51Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Segue */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
&lt;br /&gt;
* The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
* Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
* But he was assuming Newtonian physics.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced. And that therefore, there is no pure reason in asserting the existence of God, the soul, or free will. In Critique of Practical Reason, he makes the case that the those supernatural things, nonetheless, remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5565</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5565"/>
		<updated>2025-12-22T09:00:28Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Text */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
&lt;br /&gt;
* The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
* Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
* But he was assuming Newtonian physics.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
==== Segue ====&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced in a pure sense. In Critique of Practical Reason, he makes the case that the those supernatural things, nonetheless, remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5564</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5564"/>
		<updated>2025-12-22T08:59:49Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* From Critique of Practical Reason */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
* We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
* Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
* The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
* Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
&lt;br /&gt;
* The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
* Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
* But he was assuming Newtonian physics.&lt;br /&gt;
* So he says:&lt;br /&gt;
** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
* So should we posit the existence of god?&lt;br /&gt;
** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
* Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
* I don't need god to behave pro-socially.&lt;br /&gt;
** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
** But not everyone has that.&lt;br /&gt;
** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
* Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced in a pure sense. In Critique of Practical Reason, he makes the case that the those supernatural things, nonetheless, remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5563</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5563"/>
		<updated>2025-12-22T08:57:27Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
==== From Critique of Pure Reason ====&lt;br /&gt;
** We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
==== From Critique of Practical Reason ====&lt;br /&gt;
** Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
** The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
** Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
** Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
** But he was assuming Newtonian physics.&lt;br /&gt;
** So he says:&lt;br /&gt;
*** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
*** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
*** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
*** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
*** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
** So should we posit the existence of god?&lt;br /&gt;
*** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
*** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
*** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
*** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
==== My Reaction ====&lt;br /&gt;
** Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
*** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
*** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
*** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
*** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
*** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
** I don't need god to behave pro-socially.&lt;br /&gt;
*** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
*** But not everyone has that.&lt;br /&gt;
*** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
*** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
*** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
** Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
&lt;br /&gt;
=== Text ===&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced in a pure sense. In Critique of Practical Reason, he makes the case that the those supernatural things, nonetheless, remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
&lt;br /&gt;
*** Note: *** For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5562</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5562"/>
		<updated>2025-12-22T08:56:26Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Text */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* From Critique of Pure Reason:&lt;br /&gt;
** We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
* From Critique of Practical Reason:&lt;br /&gt;
** Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
** The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
** Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
** Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
** But he was assuming Newtonian physics.&lt;br /&gt;
** So he says:&lt;br /&gt;
*** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
*** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
*** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
*** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
*** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
** So should we posit the existence of god?&lt;br /&gt;
*** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
*** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
*** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
*** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
* My Reaction&lt;br /&gt;
** Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
*** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
*** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
*** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
*** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
*** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
** I don't need god to behave pro-socially.&lt;br /&gt;
*** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
*** But not everyone has that.&lt;br /&gt;
*** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
*** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
*** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
** Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced in a pure sense. In Critique of Practical Reason, he makes the case that the those supernatural things, nonetheless, remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
The professor whose lectures I am following says that Kant had two great fascinations in life: The starry skies above us, and the moral life within us. Pure Reason is about the starry skies - the reality that is, and which expresses itself on the senses of all people, and which most people express a similar perception of. Practical reason is about the moral behavior that rises from within us and is exhibited in most people. In this second book, he asks why moral behavior is so common.&lt;br /&gt;
&lt;br /&gt;
*** Note: *** For later in this writing: as an ardent pure reasonist, I tend to assert the biological imperative as the cause. Tribes which had less than 80% people with empathy engaged in too much fratricide to survive.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5561</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5561"/>
		<updated>2025-12-22T08:49:35Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Text */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* From Critique of Pure Reason:&lt;br /&gt;
** We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
* From Critique of Practical Reason:&lt;br /&gt;
** Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
** The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
** Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
** Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
** But he was assuming Newtonian physics.&lt;br /&gt;
** So he says:&lt;br /&gt;
*** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
*** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
*** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
*** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
*** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
** So should we posit the existence of god?&lt;br /&gt;
*** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
*** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
*** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
*** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
* My Reaction&lt;br /&gt;
** Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
*** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
*** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
*** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
*** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
*** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
** I don't need god to behave pro-socially.&lt;br /&gt;
*** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
*** But not everyone has that.&lt;br /&gt;
*** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
*** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
*** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
** Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
In his second major book, Critique of Practical Reason, Kant argues for the possibility, and even necessity, of the supernatural. In Critique of Pure Reason, he said that we only ever experience our sensations of things, that the things themselves cannot be directly sensed. Further he says that God, the soul, and free will cannot be experienced in a pure sense. In Critique of Practical Reason, he makes the case that the those supernatural things, nonetheless, remain a necessity in practical reasoning.&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
	<entry>
		<id>https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5560</id>
		<title>The Modern Intellectual Tradition</title>
		<link rel="alternate" type="text/html" href="https://wiki.traxel.com/index.php?title=The_Modern_Intellectual_Tradition&amp;diff=5560"/>
		<updated>2025-12-22T08:38:15Z</updated>

		<summary type="html">&lt;p&gt;RobertBushman: /* Hip Fire - 2025-12-17 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Philosophy]]&lt;br /&gt;
&amp;quot;The Modern Intellectual Tradition&amp;quot; is a lecture series available on Audible that tracks the development of modern philosophy from Descartes to Derrida.&lt;br /&gt;
&lt;br /&gt;
* https://ia801806.us.archive.org/2/items/TheModernIntellectualTraditionFromDescartesToDerrida/TheModernIntellectualTraditionFromDescartesToDerrida.pdf&lt;br /&gt;
&lt;br /&gt;
Somewhere along the way - around Kant, I think, or maybe they next guy, one of the Germans - we get the idea that God is evolving. That the creation of Earth and humans was and continues to be an attempt for God to understand himself. That fits so nicely with what I keep seeing reverberations of in consciousness. Human consciousness is evolving and expanding at a stupendous pace. What the ordinary developed mind today is conscious of is far more complex and elaborate than the most advanced thinkers from the XVIIe siècle. I'm not talking about the knowledge - though that too, of course - but of the very concept of consciousness itself. We think in larger connected meshes with higher rates of experience change. That stretches our consciousness from the moment we are born. Even my generation cannot claim to be as conscious as &amp;quot;Kids These Days.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
= Lecture 1: Introduction =&lt;br /&gt;
= Lecture 2: Scholasticism and The Scientific Revolution =&lt;br /&gt;
== Aristotle ==&lt;br /&gt;
All the things that are, in any sense, fit in 10 logical categories like properties, activities, etc. One category is primary; relatively independent physical objects: tables, chairs, people, books. Those are parusea (sp?) or primary substance. They exist in the fullest sense of the word exist. Other things are properties, characteristics, relationships, etc of primary substances. Think subject / predicate: The dog ... is walking. The fox ... is red.&lt;br /&gt;
&lt;br /&gt;
Doctrine of the four causes: Material, efficient, formal, final. A ship in the harbor has four causes: Material: The wood, nails, canvas, ropes, etc. Formal: the arrangement of the material that would make a ship. Efficient: The activity that leads to the matter and form being brought together: build it. Final: The purpose of the thing or the &amp;quot;towards which&amp;quot; of the ship; the final cause of an acorn is to become an oak tree. The final cause of a rock is to lie on the ground. The final cause of a ship is to transport things over water.&lt;br /&gt;
&lt;br /&gt;
Sookey or soul - the aliveness of a being, not necessarily eternal as in Christianity. Three levels: Plant (metabolism, growth, nutrition), Animals (moving, sensitive, passionate), Human Beings (rational, think, speak).&lt;br /&gt;
&lt;br /&gt;
Side note: Animals have norms, like, &amp;quot;Don't eat out of the garbage when the humans are looking.&amp;quot;&lt;br /&gt;
== Aquinas ==&lt;br /&gt;
The Catholic church rejected him at first, since he was new and rejecting the new is the church's final cause, but it is also the church's final cause to adopt things which become popular and claim they are the source of those things, so they eventually accepted Aquinas.&lt;br /&gt;
&lt;br /&gt;
Aquinas + Aristotle = Scholasticism.&lt;br /&gt;
== Copernicus ==&lt;br /&gt;
Heliocentric.&lt;br /&gt;
&lt;br /&gt;
== Giordano Bruno ==&lt;br /&gt;
https://en.wikipedia.org/wiki/Giordano_Bruno&lt;br /&gt;
&lt;br /&gt;
Infinite space, infinite stars, infinite planets, infinite ensouled beings, burned at the stake.&lt;br /&gt;
== Galileo ==&lt;br /&gt;
New Science of Mechanics&lt;br /&gt;
&lt;br /&gt;
Drops any reference to substantial forms and final causes. Uniform motion and rest are dynamically equivalent (not accelerating, no being acted upon).&lt;br /&gt;
&lt;br /&gt;
The Catholic Church was uncomfortable with him because he disagreed with Aquinas, who was obviously divinely integrated with Catholicism.&lt;br /&gt;
&lt;br /&gt;
= Lecture 3: The Rationalism and Dualism of Descartes =&lt;br /&gt;
* Rationalism: Not all knowledge is derived from experience, antonym of empiricism.&lt;br /&gt;
* Dualism: All things are either mind/soul or mechanistic (animals have neither soul nor free will).&lt;br /&gt;
* Meditations on First Philosophy: https://en.wikipedia.org/wiki/Meditations_on_First_Philosophy&lt;br /&gt;
== Foundationalism ==&lt;br /&gt;
What can we know with certainty?&lt;br /&gt;
* Archimedian point to stand upon, foundation of certain knowledge.&lt;br /&gt;
* Start by trying to doubt everything, thereby to see what cannot be doubted.&lt;br /&gt;
** Stick a yardstick in water, it looks bent, pull it out, it's straight, we cannot trust our senses to capture truth.&lt;br /&gt;
** What about experience in general? At night I dream of things that are not real. I cannot trust experience in general.&lt;br /&gt;
** 2 + 2 = 4? Triangles sum to 180 degrees? Maybe an evil genius has me in a jar, and shows me deceptive triangles.&lt;br /&gt;
* I think; I exist. I think therefore I exist.&lt;br /&gt;
** Something must be doing the thinking.&lt;br /&gt;
** The ideas themselves are, in fact, ideas. (may not represent anything real, but the idea itself is real)&lt;br /&gt;
*** I think I think therefore I think I am.&lt;br /&gt;
* Logically Perspicuous / Light of Nature / Natural Light of Reason&lt;br /&gt;
** I think therefore I am exposes that the natural light of reason is a real thing. (aside: bullshit)&lt;br /&gt;
* Spacial Extension is the separation between ideas and things. Ideas and mind have no spacial existence, no mass, and are the only thing that we know to be true so far.&lt;br /&gt;
== Attempted Proof of God ==&lt;br /&gt;
* Must come without spacial extension - can only come from his mind.&lt;br /&gt;
* By The Light of Nature, the cause of a thing must be at least as great as its effect.&lt;br /&gt;
* I can conceive of infinity. (aside: he can't)&lt;br /&gt;
* I am finite and imperfect (he doesn't know that), so I can't be the cause of the idea of infinite or an infinite god.&lt;br /&gt;
* Only god is infinite.&lt;br /&gt;
* The cause must be at least as great as its effect.&lt;br /&gt;
* Therefore God exists.&lt;br /&gt;
== Attempted Proof of Material Substances ==&lt;br /&gt;
* God made me with an inclination to believe in material substances.&lt;br /&gt;
* God is not a deceiver.&lt;br /&gt;
* Material substances must be real.&lt;br /&gt;
&lt;br /&gt;
= Locke's Empiricism, Berkeley's Idealism =&lt;br /&gt;
== Locke ==&lt;br /&gt;
* Empiricism: All ideas come from experience.&lt;br /&gt;
* Atomic theory, in effect: There are real things out there, and my senses perceive characteristics of them, but all I know of them is the perception, not the thing.&lt;br /&gt;
* We cannot perceive the underlying thing / the unknown support.&lt;br /&gt;
* Lock believes we can see causation; when we see one object strike another object, we are observing the causation upon the struck object.&lt;br /&gt;
&lt;br /&gt;
== Berkeley ==&lt;br /&gt;
* Idealism.&lt;br /&gt;
* There is nothing underlying what we experience for us to concern ourselves with. The experience is everything.&lt;br /&gt;
* If there were two things, experience and substance, and they were entirely distinct things, how could they interact? How could substance induce experience?&lt;br /&gt;
* Nobody is a Berkeleyan, nobody would say that there is no such thing as matter.&lt;br /&gt;
** But why not? How is us running in a simulation (mind only) different from us running on vibrating strings?&lt;br /&gt;
&lt;br /&gt;
= Neo-Aristotelians; Spinoza and Liebniz =&lt;br /&gt;
Remain closer to Aristotle than others in the new science. Retain the notion of substance.&lt;br /&gt;
&lt;br /&gt;
How can the new scientific picture of the world and of god be reconciled with the most reliable metaphysics we know, Aristotle's metaphysics of substance?&lt;br /&gt;
== Spinoza ==&lt;br /&gt;
Substance implies independence.&lt;br /&gt;
* Only one substance can be independent; the whole.&lt;br /&gt;
* The whole is that one substance, which we can call god or nature, as we please. (Pantheism - everything is god)&lt;br /&gt;
** The whole includes the mind and the body.&lt;br /&gt;
** This thing is a mode or modification - a finite modification - of the infinite attribute of physicality or materiality, which is one of the the infinite attributes of the whole or god or nature.&lt;br /&gt;
** My mind is a mode or modification - a finite modification - of the infinite attribute of mind of the whole or god or nature.&lt;br /&gt;
* Spinoza is not today what we would call a pantheist, but a panentheist - nature is in god, but god is more than nature. But in Spinoza's time, the distinction wasn't made.&lt;br /&gt;
** Schelling later pointed out that Spinoza saw god as infinite, and nature as finite, hence had the distinction existed, Spinoza would have called himself a panentheist.&lt;br /&gt;
* Minds and bodies do not causally interact.&lt;br /&gt;
** Related through psycho-physical parallelism. Two parallel chains of events.&lt;br /&gt;
*** Non-Canon: The synchronization code is murder, but god is infinite (and infinitely busy).&lt;br /&gt;
** The nice thing is that we don't have to explain how they interact.&lt;br /&gt;
* Everything is god, god is perfect, god is purely rational, this means that the world is causally determinant through and through.&lt;br /&gt;
* We have no free will, god has no free will, there is no such thing as free will.&lt;br /&gt;
** When my mind recognizes that it cannot control what happens, that it can only control its attitude about what happens, it paints a pretense of free will on top.&lt;br /&gt;
*** This is closely aligned with Dennett, Sapolsky&lt;br /&gt;
&lt;br /&gt;
== Leibniz ==&lt;br /&gt;
Polymath - one of the independent inventors of calculus.&lt;br /&gt;
* The substances of the universe must be independent.&lt;br /&gt;
** The many substances must not causally interact.&lt;br /&gt;
** Reality is thus composed of simple indivisible substances. (atoms)&lt;br /&gt;
* His atoms are monads.&lt;br /&gt;
** Because they cannot causally interact, each must contain what he called &amp;quot;intelliki&amp;quot; an inner principle that unfolds all the reactions to interactions with other things.&lt;br /&gt;
* First reference to &amp;quot;Cahoone&amp;quot; in this lecture series, I think. Definitely confusible with an abstract term, if one did no know the speaker's name.&lt;br /&gt;
** I think I want to tell that as a story about Academic Versus LLM. Need to figure out how to frame it in case the example case reads it.&lt;br /&gt;
* One must be able to determine everything about a monad from its own internal nature, including all interactions with all other things.&lt;br /&gt;
** A stone rolling down a hill has an extremely large finite set of relations to all the stones that make up the hill (and the universe), that are all getting updated.&lt;br /&gt;
* Each monad has appetition, governing its motion, like rolling to lower its center of mass.&lt;br /&gt;
* Sounds pretty batshit, but ultimately atoms aren't that different, in that they &amp;quot;know&amp;quot; to be attracted to other masses, they &amp;quot;know&amp;quot; about cohesion, etc.&lt;br /&gt;
* Monads aggregate, my body is a collection of bare monads. A rabbit might have a bunch of small monads collected in a rabbit monad, which may considerably simplify the combinatorial explosion of relation and internal knowing.&lt;br /&gt;
* Space and time are internal to the monads.&lt;br /&gt;
* God coordinates all monads in an enormous pre-established harmony. A very busy god / string theory / sub-nuclear-physics to astrophysics.&lt;br /&gt;
&lt;br /&gt;
= The Enlightenment and Rousseau =&lt;br /&gt;
18th century.&lt;br /&gt;
* The model of republican government was Greece and Rome.&lt;br /&gt;
* Historically, the idea of progress did not particularly exist.&lt;br /&gt;
** Ancients did not have a long enough or accurate enough historical record to see progress on a long time scale.&lt;br /&gt;
** Fall of Rome and The Dark Ages showed that in the before before, there was something greater.&lt;br /&gt;
* Political freedom, education, and science somehow go together.&lt;br /&gt;
* Opposed to superstition, aristocratic and church authority, and cultural tradition.&lt;br /&gt;
* Les Philosophes saw themselves as part of a new modern tradition.&lt;br /&gt;
** Kant: Dare to think for yourself.&lt;br /&gt;
* Vast majority of Europeans at the time were uneducated peasants.&lt;br /&gt;
== Isaac Newton ==&lt;br /&gt;
* Late 17th&lt;br /&gt;
* Mathematical Principles of Modern Philosophy&lt;br /&gt;
== The Encyclopedists ==&lt;br /&gt;
* Diderot&lt;br /&gt;
== Voltaire ==&lt;br /&gt;
* Writer, not a philosopher.&lt;br /&gt;
* Imparter of norms to the less educated.&lt;br /&gt;
== Adam Smith ==&lt;br /&gt;
* An Inquiry Into The Nature and Causes of The Wealth of Nations&lt;br /&gt;
* Three ways to organize economy&lt;br /&gt;
** Tradition: Children do what their parents did.&lt;br /&gt;
** Government Command&lt;br /&gt;
** Free Market / Unorganized&lt;br /&gt;
*** Spontaneous Order&lt;br /&gt;
* Bernard Mandeville: Private vice can result in public benefit, eg: self-interest via competitive reward.&lt;br /&gt;
&lt;br /&gt;
== Rousseau ==&lt;br /&gt;
* Strange and troubled person. Friend of Diderot and Hume. Banned in France, house stoned.&lt;br /&gt;
* &amp;quot;Man is born free, but everywhere he is in chains.&amp;quot;&lt;br /&gt;
* Initial Essay Contest: Can the recent advance in the arts and sciences be said to hold true for progress in morals? Is our morality improving as we know more and have more.&lt;br /&gt;
** His response, not just &amp;quot;no&amp;quot;, but &amp;quot;Hell No!&amp;quot; They have debased us.&lt;br /&gt;
** Cosmopolitan learning does not improve our souls or make us better people.&lt;br /&gt;
** Our education of our children, in fact, trying to educate our children into this new more competitive world, is only teaching them to ape their parents without maturing their inner disposition.&lt;br /&gt;
* Discourse on The Origin of Inequality Among Men&lt;br /&gt;
** Superiority of primitive man in the state of nature.&lt;br /&gt;
** Healthiest most independent lives, foraging alone, owning nothing but the simplest tools, unable to develop vices.&lt;br /&gt;
*** Note: He was living in 1700s Paris, which was quite different to contemporary upper class urban life.&lt;br /&gt;
** The first evil is ownership. Property is the foundation of inequality.&lt;br /&gt;
** Making individuals dependent on each other leads directly to wealth power dynamics.&lt;br /&gt;
** Amour Propre v. Amour de Soi&lt;br /&gt;
*** Amour de Soi: Love of self - healthy&lt;br /&gt;
*** Amour Propre: Love in the eyes of others - can become diseased, as in avarice and unhealthy obsession with comparing oneself to others. Drives inequality.&lt;br /&gt;
* Voltaire: One longs, in reading your book, to walk on all fours, but since I have lost that habit for sixty years, I feel unhappily the impossibility of resuming it.&lt;br /&gt;
** Rouseau recognized there was no way back, and was not advocating for it.&lt;br /&gt;
* If we cannot return to nature, we can at least organize society into a self-ruling society of equality.&lt;br /&gt;
** The peasants around the oak tree are not smart enough to be duped. Their wants are too simple to be tempted.&lt;br /&gt;
* Inspired Robespierre's Committee on Public Safety and The Terror.&lt;br /&gt;
* &amp;quot;Is a rich junkie free?&amp;quot;&lt;br /&gt;
** Two notions of freedom: I am free when you get out of my way. I am free when nothing else determines my actions.&lt;br /&gt;
** A person who is otherwise unconstrained from acting as they please - a wealthy rock star - who is addicted to heroin and has a steady, secure supply for their habit. Is that person free?&lt;br /&gt;
** If being free from smack is liberation to be one's true self, getting them clean is liberation, even if they say, while under the control of it, that they don't want to be so liberated.&lt;br /&gt;
*** If we say that, because we believe acting not in service to a perverting addiction is a greater purpose, then what are the perverting addictions?&lt;br /&gt;
*** If the person's true self is the measure, we can't use smack-addicted man as the measure of true self's intent.&lt;br /&gt;
** The higher self *is* defined by what is best for the community.&lt;br /&gt;
** Once one has joined together with a community, if they refuse to follow the good of the community, they must be forced to be free.&lt;br /&gt;
*** They are not being coerced, they are being brought to freedom.&lt;br /&gt;
*** Clearly has risky overlap with bad things.&lt;br /&gt;
&lt;br /&gt;
= 7: The Radical Skepticism of Hume =&lt;br /&gt;
Another legend of the Enlightenment is David Hume, an empiricist, atheist, and foundational skeptic. Hume spent ten years, from age 18 to 28, on his most celebrated work, A Treatise of Human Nature. Not well-received in its time, it is now considered one of the most important works in modern philosophy.&lt;br /&gt;
&lt;br /&gt;
His work was founded on the premise that things which are true by definition are the only rationally knowable things, rejecting Descartes' argument for the existence of god and matter. To Hume, beyond rational statements like &amp;quot;2 + 2 = 4&amp;quot; which are true by definition, all observable phenomena are subject to revision based on later contrary observations and therefore cannot be said to be true. This also led him to the conclusion that we know today as, &amp;quot;Correlation does not imply causation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For some, that presents Hume as not believing that a coin, if dropped, would necessarily fall. One can only know that it was observed to do so every time in the past. But Hume also said, &amp;quot;Nature is always too strong for principle.&amp;quot; Our inability to know that it will fall, as a matter of absolute truth, does not stop nature from doing it.&lt;br /&gt;
&lt;br /&gt;
We have since observed hovering coins when dropped inside the space shuttle, and I think that shows the beauty of Hume. In his attempt to remove god from moral behavior as philosophical truth, he did not find that morality could be reached by reason alone; but he also found that nothing else in nature could be. He reconciled morality and science in the opposite way; they are both only our best estimates of what is most good. Both are always subject to advancement.&lt;br /&gt;
&lt;br /&gt;
And that's great for philosophers and scientists. But it is not how most people operate. Most people run on norms like &amp;quot;commies are bad&amp;quot; or &amp;quot;trans people are just people.&amp;quot; When scientists and philosophers fixate on, &amp;quot;Well, it depends...,&amp;quot; they lose the majority of the commoners.&lt;br /&gt;
&lt;br /&gt;
I think we need a new generation of Mr. Rogers or Voltaire. Deeply educated philosophers who turn our best estimates of what is most good into simple rules, presented in an approachable form, and using contemporary influencer methods.&lt;br /&gt;
&lt;br /&gt;
== Tying the end to the beginning ==&lt;br /&gt;
I don't feel like I tied the last two paragraphs into the first four.&lt;br /&gt;
&lt;br /&gt;
Looking at the last sentence in the first paragraph, the reason it was not well received was all about social norms. In 1740, society in Europe was strongly connected to Christianity. The church was just getting over the shift from Aristotle's scholasticism to Descartes' Natural Light of Reason, and here Hume comes to toss it all in the dumpster. Abandoning or updating norms is hard, the mechanism is not built for that, it literally is made of long-term neural pathways that have been strengthened through long-term conditioning.&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers ===&lt;br /&gt;
America has a lot of aspiring influencers. Most of them are already facing the frustration of working in a crowded market. Most are already facing the problems of income falling behind inflation in the majority of income fractiles. Soon, if the most troubling trends continue, they will be trapped in a collapsing economy.&lt;br /&gt;
&lt;br /&gt;
There should be tens or hundreds of thousands of people with the skills to change the course of cognition, and the motive to do so.&lt;br /&gt;
&lt;br /&gt;
They will be up against centralized state media like TikTok ( https://old.reddit.com/r/BlackPeopleTwitter/comments/1nmfh71/i_might_have_preferred_the_chinese/ ), Facebook, Twitter, ABC, CBS, Disney, GPT, Grok, Amazon AI, Google AI, FoxNews, Truth Social, OANN, etc.&lt;br /&gt;
&lt;br /&gt;
Decentralized social media, including group-based things like Slack and Discord and decentralized identity systems like Bluesky, will remain viable for propagating information.&lt;br /&gt;
&lt;br /&gt;
Unknown-if-state-media sites like YouTube are probably best treated at least with suspicion.&lt;br /&gt;
&lt;br /&gt;
So: How to begin pre-seeding influencers with the norms necessary to expand decentralized social media, seek the science and philosophy based norms, and propagate them as things spiral?&lt;br /&gt;
&lt;br /&gt;
=== Activating Influencers 2 ===&lt;br /&gt;
John Oliver is a good parallel for Voltaire: https://old.reddit.com/r/law/comments/1nnm5ab/john_oliver_argues_disney_should_legally_fight/&lt;br /&gt;
&lt;br /&gt;
He hits the cerebral-but-approachable, sardonic, witty flavor of Candide perfectly. He appeals to an educated audience that is paying attention; he adds strength and depth to the awareness of the problem, and reaches high-consideration folks with only surface knowledge of the story, but he's over the head of a lot of people.&lt;br /&gt;
&lt;br /&gt;
To win elections and foster broad collective action, we also need something closer to the level of Mr. Rogers. Easily consumable dogma like &amp;quot;immigrants make us stronger by adding a different perspective&amp;quot; or &amp;quot;buying things from gross collaborators like Disney hurts free speech,&amp;quot; wrapped in charming stories done as short vignettes capable of trending on Splatter.&lt;br /&gt;
&lt;br /&gt;
Activating a broad collection of Mr. Rogers's may be best chaperoned by a smaller collection of Voltaires.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
* Legendary Bits&lt;br /&gt;
** Relations of Facts v. Matters of Fact: True by definition is certain, but uninteresting. Matters of fact are interesting, but necessarily uncertain.&lt;br /&gt;
** Constant Conjunction v. Necessary Connection: Correlation does not imply causation.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god. &amp;quot;Intelligent Design&amp;quot; has a wrong-direction-knees shaped hole in it.&lt;br /&gt;
* My Take&lt;br /&gt;
** &amp;quot;Nature is always too strong for principle.&amp;quot;&lt;br /&gt;
** Initial goal was a moral philosophy without god.&lt;br /&gt;
** Concerned that moral philosophy appeared to be based in sentiment or feeling.&lt;br /&gt;
** Tried to establish that moral philosophy could be rational.&lt;br /&gt;
** Instead concluded that nothing interesting is rational.&lt;br /&gt;
** Which is equally good/bad.&lt;br /&gt;
* Moral Philosophy based in sentiment or feeling.&lt;br /&gt;
* Non-believer, no use of god or transcendent in his work.&lt;br /&gt;
** As a Librarian: Got in trouble for ordering &amp;quot;indencent&amp;quot; books.&lt;br /&gt;
** World waited to see if he would repent on his deathbed. He did not.&lt;br /&gt;
* Pushed empiricism beyond Locke and Berkeley&lt;br /&gt;
* All knowledge and all ideas derive from experience.&lt;br /&gt;
* 2 and only 2 categories exhaust all knowledge:&lt;br /&gt;
** Relations of Ideas&lt;br /&gt;
*** &amp;quot;All bachelors are unmarried&amp;quot;, &amp;quot;2 + 2 = 4&amp;quot;.&lt;br /&gt;
*** The &amp;quot;by definition&amp;quot; thing.&lt;br /&gt;
** Matters of Fact&lt;br /&gt;
*** Made true by a statements relation to impressions which confirm it.&lt;br /&gt;
*** &amp;quot;There are bachelors in this room&amp;quot; - you have to check.&lt;br /&gt;
* Each type of knowledge brings good news and bad news.&lt;br /&gt;
** Relations of Ideas: Good: Universally certain. Bad: And so they are uninteresting.&lt;br /&gt;
** Matters of Fact: Good: Real ideas about the real world. Bad: Never certain, never true by necessity.&lt;br /&gt;
* Causality:&lt;br /&gt;
** Two notions of causality&lt;br /&gt;
*** Constant Conjunction: Whenever I see A, I see B.&lt;br /&gt;
*** Necessary Connection: A and B are necessarily connected if B must occur whenever A occurs. (causation, though Cahoone doesn't say if Hume believes it is directional)&lt;br /&gt;
* Does Necessary Connection exist in the real world?&lt;br /&gt;
** How can we know?&lt;br /&gt;
** If we see object A strike object B, and the resulting movement in object B, and we see it a million times, we have seen it a million times, but we have not yet seen it the million and one-th time.&lt;br /&gt;
** There is a belief that the future will resemble the past, but that is a belief, not knowledge. It is not True (big T true).&lt;br /&gt;
** [editorial] to me, this is foundational science. Science is about our current best known model. It is delighted and excited to be disproven.&lt;br /&gt;
* Hume claims, then, that science is not empiricism. OK, fine, but science is better.&lt;br /&gt;
* --- So far, I believe Cahoone ---&lt;br /&gt;
* Cahoone Says: Hume believes that we have not reason to believe that the coin will drop.&lt;br /&gt;
** I only have experience of what Cahoone has said that Hume said. I do not have experience of what Hume said. Therefore, I have no knowledge of what Hume said, and no reason to believe that what Cahoone says has a necessary connection to what Hume said. :p&lt;br /&gt;
** There is no rational reason to believe in induction, not even probable. But Cahoone keeps saying &amp;quot;probable knowledge&amp;quot;. Knowledge and true are very different from probable.&lt;br /&gt;
** Cahoone says that Hume says that it is not rational to leap from &amp;quot;things fall&amp;quot; to &amp;quot;an unseen force makes them fall&amp;quot; as a matter of truth.&lt;br /&gt;
*** That's fine, I think Cahoone actually managed to understand Hume on that one.&lt;br /&gt;
*** That's why it's called &amp;quot;The Theory of Gravity&amp;quot; - because it aligns over and over and over again, but we have not yet observed gravitons or gravity waves (or maybe we have recently?)&lt;br /&gt;
*** But that's radically different from &amp;quot;I expect things in gravity wells to fall.&amp;quot; I am observing the existence of the gravity well with proprioception and my eustacean tubes.&lt;br /&gt;
*** OK, I'm going to try to stop ranting about Cahoone and listen to the next 8 minutes at 2x speed.&lt;br /&gt;
* ...eight more minutes of blabla with examples of what &amp;quot;no predictive capability&amp;quot; means...&lt;br /&gt;
* Hume kills it on &amp;quot;intelligent design&amp;quot; with the &amp;quot;broken design&amp;quot; retort.&lt;br /&gt;
** A partly orderly world can only prove a partly orderly god.&lt;br /&gt;
* However, that does not mean that Hume does not expect the apple to fall. He does, and he acknowledges that this is a disconnect between what is real and what is known. That the flaw is not in what is real, but a shortcoming in what we know.&lt;br /&gt;
* &amp;quot;Nature is always too strong for principle.&amp;quot; - principles say we cannot know that the apple will fall; nature ignores the principles and the apple falls.&lt;br /&gt;
* Reason cannot reach reality. And it's a very huge field of stuff that cannot be reached by reason.&lt;br /&gt;
&lt;br /&gt;
= 8: Kant's Copernican Revolution =&lt;br /&gt;
Kant was not satisfied with Hume's conclusion that neither nature nor god were knowable. Hume posited exactly two classes of knowledge; things that are true by definition like &amp;quot;2 + 2 = 4,&amp;quot; and things that require observation like &amp;quot;there are 4 apples in that basket.&amp;quot; The former provide no new knowledge beyond their definitions, and the latter are only as true as our senses. For Hume, nothing real in the world could be truly known.&lt;br /&gt;
&lt;br /&gt;
Kant posited that there is another class of knowledge which is more than a restatement of existing definitions, but is not dependent on observation. As an example he presents the parallel postulate, which has a number of obviously true consequences such as the interior angles of a Euclidean triangle summing to exactly 180 degrees. It is not merely a combination of the postulates of geometry nor a mere postulate itself, it is an absolute truth of Euclidean geometry. And yet it cannot be proven from the first three postulates of geometry nor by empirical testing.&lt;br /&gt;
&lt;br /&gt;
For Kant, this meant that our mind has an active role in the processing of reality. New information does not only come from sensations of the outside world; the mind classifies, arranges, and makes abstractions about those sensations. And in that process it creates new, true information.&lt;br /&gt;
&lt;br /&gt;
In his second book, Critique of Practical Reason, he uses this as a lever to restore the knowability of god.&lt;br /&gt;
&lt;br /&gt;
== Overview Notes ==&lt;br /&gt;
The mind does not just experience reality, but actively constructs those experiences.&lt;br /&gt;
&lt;br /&gt;
* Started as a mathematical physicist for the 1st half of his life, working on stellar formation.&lt;br /&gt;
* Famously punctual. Supposedly was late only one day; the day he read Rousseau.&lt;br /&gt;
* Critique of Pure Reason; theory of knowledge&lt;br /&gt;
* Critique of Practical Reason; ethics&lt;br /&gt;
* Critique of Judgment; art&lt;br /&gt;
* Believed if Hume were right, science is in trouble.&lt;br /&gt;
** Necessarily true knowledge about the world is required.&lt;br /&gt;
== Counter-Hume Breakdown ==&lt;br /&gt;
Creates a third category of knowledge, where Hume had 2.&lt;br /&gt;
&lt;br /&gt;
=== Hume's Categories ===&lt;br /&gt;
* Relations of ideas&lt;br /&gt;
** à priori: independent of experience&lt;br /&gt;
** true by definition alone&lt;br /&gt;
* Matters of fact&lt;br /&gt;
** à posteriori: requires experience&lt;br /&gt;
** not true by definition alone&lt;br /&gt;
&lt;br /&gt;
=== Kant's Criteria Dimensions ===&lt;br /&gt;
* Dimension 1&lt;br /&gt;
** Analyticity (predicate is contained in the subject)&lt;br /&gt;
** Synthetic Statement (predicate contains new information)&lt;br /&gt;
* Dimension 2&lt;br /&gt;
** à priori: (goes before; does not require experience)&lt;br /&gt;
** à posteriori: (goes after; requires experience)&lt;br /&gt;
&lt;br /&gt;
=== Kant's Breakdown ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!à priori (not based on experience)&lt;br /&gt;
!à posteriori (based on experience)&lt;br /&gt;
|-&lt;br /&gt;
!analytic (true by definition, no new information in predicate)&lt;br /&gt;
|Hume's Relations of Ideas&lt;br /&gt;
|No such thing&lt;br /&gt;
|-&lt;br /&gt;
!synthetic (new information in predicate)&lt;br /&gt;
|Kant's Greatest Innovation in Philosophy&lt;br /&gt;
|Hume's Matters of Fact&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Synthetic à Priori: Not all knowledge derives from experience.&lt;br /&gt;
&lt;br /&gt;
How so?&lt;br /&gt;
&lt;br /&gt;
Copernican Revolution: Rather than imagining that our cognition conforms to objects of experience, what if objects of experience conform to our cognition?&lt;br /&gt;
&lt;br /&gt;
What if the cognitive apparatus has a way of handling experience which implicitly imposes a structure on or organizes our experience? What if we do transcendental processing on the input?&lt;br /&gt;
&lt;br /&gt;
Cahoone says transcendental in this context means processing that happens between when the stimulus hits your sensors and when you experience it. It's a processing step to which you do not have access because it happens before experience; but it was not from nature, it was in you. There's no spiritual implication in Kant's use of transcendental, here. (Note: I prefaced this with &amp;quot;Cahoone Says&amp;quot; because I think the spiritual thing is just the other boot that hasn't dropped yet)&lt;br /&gt;
&lt;br /&gt;
What if cognition is active, and not merely passive.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Throughout the history of Western thought, philosophers have tended to act as if the mind is a kind of passive register of impingements of sensory experience.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If it were true that our cognition imposes itself on what we perceive, then we could have certainty about things that will happen tomorrow. Not because we are certain that the world will not change, but because we are certain that our cognition will impose itself in the same way.&lt;br /&gt;
&lt;br /&gt;
If I am a pessimist today, I can be certain that things are going to suck tomorrow.&lt;br /&gt;
&lt;br /&gt;
The parallel postulate is a good example of knowledge that is à priori and contains new information: https://en.wikipedia.org/wiki/Parallel_postulate&lt;br /&gt;
&lt;br /&gt;
== moving on ==&lt;br /&gt;
The cognitive faculty is composed of 3 components:&lt;br /&gt;
* intuition&lt;br /&gt;
** 2 a priori forms; space and time. Out of all the things I perceive, there are empirical facts, but there are also things that I know independent of experience; I always know that the thing I am experiencing must be in space and time. If I experience it tomorrow, it must exist in space and time.&lt;br /&gt;
* understanding&lt;br /&gt;
** 12 different categories that the mind imposes on experience.&lt;br /&gt;
** The concepts of substances and their properties, and the concepts of necessary connection, are part of the a priori categories of understanding.&lt;br /&gt;
** The necessity between events in the world is something the mind structures into experience.&lt;br /&gt;
* reason&lt;br /&gt;
&lt;br /&gt;
Hume said that we believe tomorrow will be like today out of habit.&lt;br /&gt;
&lt;br /&gt;
Kant says it is part of how the mind is programmed to organize experience.&lt;br /&gt;
&lt;br /&gt;
Kant must say that all our knowledge is limited by the bounds of possible experience. We can only know things which can be experienced. And its only those things, the objects of possible experience, to which the a priori forms and a priori categories of intuition and understanding apply.&lt;br /&gt;
&lt;br /&gt;
All of us, together, are experiencing an objective world. The world is really here, the things are really here, the things have features, they have existence over time, they're made of materials, they have causal relationships.&lt;br /&gt;
&lt;br /&gt;
We don't have a priori knowledge of what process causes those causalities, but have a priori knowledge that some process causes things.&lt;br /&gt;
&lt;br /&gt;
What about things independent of their experience by us, before there were humans to experience them? What is the nature of things when a human does not experience them? Kant says: That we cannot know.&lt;br /&gt;
&lt;br /&gt;
So he's got one ball in each court: There are real things out there, but we can only say they exist by virtue of them being experienced. The thing in itself may or may not exist independent of experience. To us, it is and only is what it appears to be; we cannot say anything about the thing that causes the appearance.&lt;br /&gt;
&lt;br /&gt;
= 9: Kant And The Religion of Reason =&lt;br /&gt;
Kant's concept (from Critique of Pure Reason) is this: Our minds, which are actively involved in the creation of reality, are continuously advancing. What we see as reality, or god, today; is different from what we saw a thousand years ago, or will see a thousand years from now.&lt;br /&gt;
&lt;br /&gt;
Will String Theory hold up? Even if it does, it will certainly change. What does that mean for the reality with which our minds interact?&lt;br /&gt;
&lt;br /&gt;
Putting it in a quantum context (a context the idea of which would probably have made Kant late to work for a second time in his career):&lt;br /&gt;
&lt;br /&gt;
  If observing reality changes it, and our ability to observe reality is constantly advancing; must not we be constantly advancing reality?&lt;br /&gt;
&lt;br /&gt;
There have long been legends - from Greece to Gaiman - of God, or gods, being proportionate to their adherents. Why not?&lt;br /&gt;
== Hip Fire - 2025-12-17 ==&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* From Critique of Pure Reason:&lt;br /&gt;
** We experience our sensations of things. Those sensations are caused by the things in themselves, which are real, but we do not experience the things in themselves.&lt;br /&gt;
* From Critique of Practical Reason:&lt;br /&gt;
** Our perception of things in themselves is always a reflection, so we cannot say we know their true nature.&lt;br /&gt;
** The purpose of philosophy is to seek truth, we are driven to always push the limits of knowledge.&lt;br /&gt;
** Indeed, we are driven to push our knowledge beyond the bounds of our ability to perceive truth, and so scientists and philosophers are always destined to be positing things that aren't true and disproving them the next day.&lt;br /&gt;
** The dialectic of philosophy is the two-actor tragedy of that story: The first philosopher posits a new truth, and the second philosopher contradicts it with a new hypothesis. It is a constant process of destruction.&lt;br /&gt;
** Kant seems to have thought that they were at the ultimate stage of human perception, and all that was left was arguing back and forth without progress.&lt;br /&gt;
** But he was assuming Newtonian physics.&lt;br /&gt;
** So he says:&lt;br /&gt;
*** We cannot experience the thing itself, even though it is real.&lt;br /&gt;
*** We are things in ourselves, but we cannot experience the self, in itself.&lt;br /&gt;
*** We can posit anything we like about things in themselves, and we can never prove nor disprove them with science, because science cannot experience the thing itself.&lt;br /&gt;
*** We can, for example, posit that we have free will. Science can never deny that free will is happining in our self, itself, because it cannot experience our self, itself.&lt;br /&gt;
*** Likewise, we can posit the existence of god, and science cannot deny it, because science cannot experience god in itself, nor the non-existence of god in itself.&lt;br /&gt;
** So should we posit the existence of god?&lt;br /&gt;
*** Kant says yes, because god is the motivation for being good.&lt;br /&gt;
*** We must posit free will, so that we believe our choices our ours to make.&lt;br /&gt;
*** We must posit the existence of god, so that there is a benevolent entity to judge our actions.&lt;br /&gt;
*** We must posit that we have a soul, so that there is a thing to experience god's eternal carrot and stick.&lt;br /&gt;
* My Reaction&lt;br /&gt;
** Quantum Mechanics gave us the mechanism his Newtonian thinking was not yet aware of.&lt;br /&gt;
*** Kant was stuck with Newtonian physics, but we are not.&lt;br /&gt;
*** It provides a hiding place, which we currently believe to be eternal and irrevocable, behind which free will, the soul, and god can hide.&lt;br /&gt;
*** It also provides a mechanism for those things to interact with reality - a way to cause experience to happen, even if we cannot directly experience the thing itself.&lt;br /&gt;
*** QM is where &amp;quot;predictable and never disproven&amp;quot; breaks down. The number of electrons in the valence shell is always the same, but each electron's position and vector at any given moment is fuzzy.&lt;br /&gt;
*** Sapolsky's &amp;quot;every time we've ever measured it, it is unpredictable in a probilistic way&amp;quot; may be true, but his conclusion that it *always is so*, even when we aren't looking, would have made Kant chuckle and call him adorable.&lt;br /&gt;
** I don't need god to behave pro-socially.&lt;br /&gt;
*** I have so much empathy that it hurts me more to hurt someone else than the upside I get from stealing their wallet or whatever.&lt;br /&gt;
*** But not everyone has that.&lt;br /&gt;
*** Did Kant have empathy, and he was talking bout what society needs because not all people are naturally good?&lt;br /&gt;
*** Or was Kant a sociopath explaining why he needed to posit god?&lt;br /&gt;
*** Or perhaps; as a pure rationalist, was he trying to come up with something to justify his empathic desire to be good despite pure science having no divine carrot and stick?&lt;br /&gt;
** Suppose we accept that society needs to posit god; how do we convince society to posit a benevolent god, instead of the jealous, tribalist, exclusionary, exploitative, vindictive, and otherwise nasty deities that so often get top billing?&lt;br /&gt;
=== Text ===&lt;br /&gt;
&lt;br /&gt;
== Hip Fire - 2025-11-26 ==&lt;br /&gt;
In Critique of Pure Reason, Kant states that our sensations are all that we can know, and while those sensations are caused by real things, our sensations do not amount to experiencing the thing itself. For a modern physics metaphor; when we touch something we feel the repulsion between electrons in the shells of atoms, we don't actually feel the atoms.&lt;br /&gt;
&lt;br /&gt;
In addition, he posits that God and the soul exist, but that they are outside ...&lt;br /&gt;
&lt;br /&gt;
== Kant 2 Notes ==&lt;br /&gt;
* End Question: How can a deterministic science be compatible with free will, ethics, and religion?&lt;br /&gt;
* Fascinated By Two Things: Starry Sky Above Us, Moral Life Within Us&lt;br /&gt;
* Kant is the greatest proponent of a morality of rational duty.&lt;br /&gt;
** The most prominent ethical theories are utilitarianism and the theory of duty.&lt;br /&gt;
** Kant is the most prominent advocate of the theory of duty.&lt;br /&gt;
** Utilitarianism was John Stewart Mill and others.&lt;br /&gt;
* The Dialectic, or unavoidable errors of reason, when it tries to know too much; leads to a defense of faith and morality from science.&lt;br /&gt;
* If we cannot know things in themself, why posit them at all?&lt;br /&gt;
** German philosophers following Kant did choose to jettison things in themself.&lt;br /&gt;
* Kant thought that if you remove things in themselves, he would reduce himself to being a Berkeleyan Idealist.&lt;br /&gt;
* Kant is a Critical Idealist.&lt;br /&gt;
** Cognition is constructed by our minds, but things in themselves are not.&lt;br /&gt;
** Things in themselves cause the sensations that are organized by the active transcendental activity of our mind.&lt;br /&gt;
* Appearances are mind independent (independent of any individual mind)&lt;br /&gt;
* Things in themselves are independent of all minds.&lt;br /&gt;
* Things in themselves cause the experience that science investigates.&lt;br /&gt;
* While we can have experience of appearances, we cannot know anything about the thing itself.&lt;br /&gt;
* We are all experiencing the appearance of the thing itself (the podium, the chair, the car).&lt;br /&gt;
* We are not experiencing the thing itself (not even our own self in itself).&lt;br /&gt;
* But:&lt;br /&gt;
* The dialectic of pure reason&lt;br /&gt;
** The complex character of the third part of our knowing apparatus: Reason.&lt;br /&gt;
** Requires study, because Kant is changing the meaning of the word reason (vernunft)&lt;br /&gt;
*** Reason posits ideas in the Platonic sense.&lt;br /&gt;
*** Reason tries to know everything, it is its nature to try to know everything.&lt;br /&gt;
*** Reason is that part of the human cognitive faculty that is trying to know everything.&lt;br /&gt;
*** Reason posits certain ultimate ideas&lt;br /&gt;
**** The idea of a ground of being (god).&lt;br /&gt;
**** The idea of a substantial self or soul.&lt;br /&gt;
**** The idea of free will&lt;br /&gt;
**** The idea of the unity of the world of experience (that we see the same thing).&lt;br /&gt;
*** Our experience is many, manifold, various. Reason isn't satisfied with various experiences.&lt;br /&gt;
*** Science tracks my parents, and their parents, and their parents.&lt;br /&gt;
*** Reason asks where the chain began.&lt;br /&gt;
*** Driven to try to know the things themselves.&lt;br /&gt;
*** Reason is creative, therefore.&lt;br /&gt;
** When reason tries to know the things themselves, it drives us to dig deeper. The motivation is good.&lt;br /&gt;
** Reason drives us to move science further.&lt;br /&gt;
** Where reason goes wrong is in thinking that we can know all, that we can get to the end.&lt;br /&gt;
** We cannot know the end.&lt;br /&gt;
** But reason really wants to believe that it can, and when it claims that it has, it generates a dialectic.&lt;br /&gt;
** A dialectic originated as arguing back and forth between philosophers.&lt;br /&gt;
** Kant twists that into a more peojroative meaning.&lt;br /&gt;
** A logic of contradictions; a set of ideas which, because they try to know too much, generates a contradiction.&lt;br /&gt;
** And if it continues, it generates another and another and another.&lt;br /&gt;
** Viz: Sapolsky&lt;br /&gt;
*** Brains are biochemical machines, they are deterministic.&lt;br /&gt;
*** What about quantum uncertainty?&lt;br /&gt;
*** Every time we have observed quantum uncertainty, it has obeyed the Born Rule. Therefore, it must always obey the Born Rule. Therefore, it cannot have coherent effects.&lt;br /&gt;
*** Kant: That's a contradiction, you haven't observed it. In fact, what you have observed of it, the effects of it, still seem like the outcome of coherent effects. So the closest you've come to observing it suggests that it does violate the Born Rule under particular conditions - the specific conditions under inquiry. Nobody is claiming that marbles sometimes fall through tabletops.&lt;br /&gt;
&lt;br /&gt;
= Marx =&lt;br /&gt;
Did well enough on the critique of capitalism, but the &amp;quot;and so instead we should...&amp;quot; part was a bit thin.&lt;br /&gt;
&lt;br /&gt;
Also; even if the direction thing were addressed, I feel like there's an implicit gap in risk management (aside from price/production optimization of commodity goods).&lt;/div&gt;</summary>
		<author><name>RobertBushman</name></author>
	</entry>
</feed>