Posts

Is there an existing label for the category of fallacies exemplified by "paradox of tolerance"? 2019-09-16T20:33:16.126Z

Comments

Comment by slikts on Is there an existing label for the category of fallacies exemplified by "paradox of tolerance"? · 2020-01-16T16:10:06.406Z · LW · GW

Applying moral principles to the real world requires complex reasoned judgement. Making the principles pure or absolute is an attempt to make the required judgement formulaic instead, often due to a cynicism about individual judgement abilities of people, and this wittingly or unwittingly leads to a paradoxical outcome like in the paradox of tolerance.

Comment by slikts on Is there an existing label for the category of fallacies exemplified by "paradox of tolerance"? · 2019-09-25T17:11:15.097Z · LW · GW

The paradox of unlimited tolerance is that it has unacceptable consequences in allowing the destruction of a tolerant society; same for pacifism if the grounding principles for it are valuing human life and preferring positive-sum outcomes instead of just non-violence being an end in itself.

There obviously can be and are many people arguing for absolute principles (often in bad faith, since they don't actually hold the principles themselves), which is what makes it so topical.

Comment by slikts on Is there an existing label for the category of fallacies exemplified by "paradox of tolerance"? · 2019-09-25T17:00:49.951Z · LW · GW

Presuming justified exceptions to a principle to be impossible is what makes something an absolutism fallacy in the category of fallacies of presumption.

Comment by slikts on Is there an existing label for the category of fallacies exemplified by "paradox of tolerance"? · 2019-09-18T14:09:57.699Z · LW · GW

The closest existing label turns out to be absolutism fallacy; I've posted a more focused question about the same topic elsewhere.

Comment by slikts on Is there an existing label for the category of fallacies exemplified by "paradox of tolerance"? · 2019-09-17T13:23:13.097Z · LW · GW

You've set up a dichotomy between limited (e.g., reciprocal) tolerance and absolute tolerance by presuming that the limitations would be arbitrary and unjustified, but the limitations are justified by self-preservation (in case of Popper, tempered by preferring rational discourse if possible), so what you've said is an illustration of the fallacious argument this question is about.

Comment by slikts on Procedural Knowledge Gaps · 2011-03-09T07:39:04.891Z · LW · GW

Too bad it needs Java.

Comment by slikts on Dark Arts 101: Using presuppositions · 2011-01-11T11:15:42.410Z · LW · GW

You can use a simple bookmarklet to make links on LW non-functional, e.g.:

javascript:(function(){$$('a').each(function(q){q.writeAttribute('href','#');})})();

To use this you would just set up a bookmark with the code as the address and click on it while LW is open.

Edit: A cross-site version of the bookmarklet would look like this:

javascript:(function(){var x=document.getElementsByTagName('a');for(var i=0,n=x.length;i<n;i++)x[i].setAttribute('href','#');})();