<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mordictionary.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=MorMythos</id>
	<title>MorDictionary - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://mordictionary.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=MorMythos"/>
	<link rel="alternate" type="text/html" href="https://mordictionary.org/wiki/Special:Contributions/MorMythos"/>
	<updated>2026-06-21T08:41:03Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.3</generator>
	<entry>
		<id>https://mordictionary.org/index.php?title=Var_dump()&amp;diff=595</id>
		<title>Var dump()</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Var_dump()&amp;diff=595"/>
		<updated>2026-05-06T01:16:00Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;background:#3a2a00; border:1px solid #ffaa00; padding:8px 12px; color:#ffcc66;&amp;quot;&amp;gt;&lt;br /&gt;
⚠ {{{1|This entry has not been fully reviewed. Use with caution.}}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==var_dump()==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;func.&#039;&#039; [PHP 4, PHP 5, PHP 7, PHP 8] [vɑr dʌmp]&lt;br /&gt;
&lt;br /&gt;
===Plain English===&lt;br /&gt;
&amp;lt;code&amp;gt;var_dump()&amp;lt;/code&amp;gt; tells a program to reveal exactly what&#039;s inside something: a variable, a value, an array, an object, or the result of an expression. Not just the value, but what kind of thing it is and how much of it there is. Hand it the word &amp;lt;code&amp;gt;&amp;quot;pending&amp;quot;&amp;lt;/code&amp;gt; and it shouts back: &amp;quot;I&#039;m a string, I have seven letters, and the word is pending.&amp;quot; Type, size, and value, all at once.&lt;br /&gt;
&lt;br /&gt;
===Definitions===&lt;br /&gt;
# &#039;&#039;(computing)&#039;&#039; A PHP debugging function that displays structured information about one or more expressions, including type and value. Accepts variables, literals, arrays, objects, or function results. Arrays and objects are explored recursively, with values indented to show structure. All public, private, and protected properties of objects are returned in the output unless the object implements a &amp;lt;code&amp;gt;__debugInfo()&amp;lt;/code&amp;gt; method.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&amp;lt;code&amp;gt;var_dump(mixed $value, mixed ...$values): void&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Accepts one or more expressions to dump.&lt;br /&gt;
* Returns no value.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;$hot_women = [&#039;Tinashe&#039;, &#039;Senait Gidey&#039;, &#039;Jisoo&#039;];&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;var_dump($hot_women);&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Outputs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
array(3) {&lt;br /&gt;
  [0]=&amp;gt; string(7) &amp;quot;Tinashe&amp;quot;&lt;br /&gt;
  [1]=&amp;gt; string(12) &amp;quot;Senait Gidey&amp;quot;&lt;br /&gt;
  [2]=&amp;gt; string(5) &amp;quot;Jisoo&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Three items in the array. Each one identified by its position, its type, its length, and its value.&lt;br /&gt;
Nothing assumed. Nothing hidden.&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* &amp;lt;code&amp;gt;[https://www.php.net/manual/en/function.print-r.php print_r()]&amp;lt;/code&amp;gt; (gentler, less honest)&lt;br /&gt;
* &amp;lt;code&amp;gt;[https://laravel.com/docs/helpers#method-dd dd()]&amp;lt;/code&amp;gt; (dumps, then dies; the more dramatic option)&lt;br /&gt;
* [https://www.php.net/manual/en/language.oop5.magic.php#language.oop5.magic.debuginfo __debugInfo()] (the escape hatch)&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Var_dump()&amp;diff=594</id>
		<title>Var dump()</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Var_dump()&amp;diff=594"/>
		<updated>2026-05-06T01:12:22Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;background:#3a2a00; border:1px solid #ffaa00; padding:8px 12px; color:#ffcc66;&amp;quot;&amp;gt;&lt;br /&gt;
⚠ {{{1|This entry has not been fully reviewed. Use with caution.}}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==var_dump()==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;func.&#039;&#039; [PHP 4, PHP 5, PHP 7, PHP 8] [vɑr dʌmp]&lt;br /&gt;
&lt;br /&gt;
===Plain English===&lt;br /&gt;
&amp;lt;code&amp;gt;var_dump()&amp;lt;/code&amp;gt; tells a program to reveal exactly what&#039;s inside something: a variable, a value, an array, an object, or the result of an expression. Not just the value, but what kind of thing it is and how much of it there is. Hand it the word &amp;lt;code&amp;gt;&amp;quot;pending&amp;quot;&amp;lt;/code&amp;gt; and it shouts back: &amp;quot;I&#039;m a string, I have seven letters, and the word is pending.&amp;quot; Type, size, and value, all at once.&lt;br /&gt;
&lt;br /&gt;
===Definitions===&lt;br /&gt;
# &#039;&#039;(computing)&#039;&#039; A PHP debugging function that displays structured information about one or more expressions, including type and value. Accepts variables, literals, arrays, objects, or function results. Arrays and objects are explored recursively, with values indented to show structure. All public, private, and protected properties of objects are returned in the output unless the object implements a &amp;lt;code&amp;gt;__debugInfo()&amp;lt;/code&amp;gt; method.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&amp;lt;code&amp;gt;var_dump(mixed $value, mixed ...$values): void&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Accepts one or more expressions to dump.&lt;br /&gt;
* Returns no value.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;code&amp;gt;$colors = [&#039;red&#039;, &#039;green&#039;, &#039;blue&#039;];&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;var_dump($colors);&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Outputs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
array(3) {&lt;br /&gt;
  [0]=&amp;gt; string(3) &amp;quot;red&amp;quot;&lt;br /&gt;
  [1]=&amp;gt; string(5) &amp;quot;green&amp;quot;&lt;br /&gt;
  [2]=&amp;gt; string(4) &amp;quot;blue&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Three items in the array. Each one identified by its position, its type, its length, and its value.&lt;br /&gt;
Nothing assumed. Nothing hidden.&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* &amp;lt;code&amp;gt;[https://www.php.net/manual/en/function.print-r.php print_r()]&amp;lt;/code&amp;gt; (gentler, less honest)&lt;br /&gt;
* &amp;lt;code&amp;gt;[https://laravel.com/docs/helpers#method-dd dd()]&amp;lt;/code&amp;gt; (dumps, then dies; the more dramatic option)&lt;br /&gt;
* [https://www.php.net/manual/en/language.oop5.magic.php#language.oop5.magic.debuginfo __debugInfo()] (the escape hatch)&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Var_dump()&amp;diff=593</id>
		<title>Var dump()</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Var_dump()&amp;diff=593"/>
		<updated>2026-05-06T01:01:04Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;background:#3a2a00; border:1px solid #ffaa00; padding:8px 12px; color:#ffcc66;&amp;quot;&amp;gt;&lt;br /&gt;
⚠ {{{1|This entry has not been fully reviewed. Use with caution.}}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==var_dump()==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;func.&#039;&#039; [PHP 4, PHP 5, PHP 7, PHP 8] [vɑr dʌmp]&lt;br /&gt;
&lt;br /&gt;
===Plain English===&lt;br /&gt;
&amp;lt;code&amp;gt;var_dump()&amp;lt;/code&amp;gt; tells a program to reveal exactly what&#039;s inside something: a variable, a value, an array, an object, or the result of an expression. Not just the value, but what kind of thing it is and how much of it there is. Hand it the word &amp;lt;code&amp;gt;&amp;quot;pending&amp;quot;&amp;lt;/code&amp;gt; and it shouts back: &amp;quot;I&#039;m a string, I have seven letters, and the word is pending.&amp;quot; Type, size, and value, all at once.&lt;br /&gt;
&lt;br /&gt;
===Definitions===&lt;br /&gt;
# &#039;&#039;(computing)&#039;&#039; A PHP debugging function that displays structured information about one or more expressions, including type and value. Accepts variables, literals, arrays, objects, or function results. Arrays and objects are explored recursively, with values indented to show structure. All public, private, and protected properties of objects are returned in the output unless the object implements a &amp;lt;code&amp;gt;__debugInfo()&amp;lt;/code&amp;gt; method.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&amp;lt;code&amp;gt;var_dump(mixed $value, mixed ...$values): void&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Accepts one or more expressions to dump.&lt;br /&gt;
* Returns no value.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;quot;The form had been submitting for three days without saving anything. She finally dropped a&lt;br /&gt;
&amp;lt;code&amp;gt;var_dump($user)&amp;lt;/code&amp;gt; at the top of the handler and found it immediately: &amp;lt;code&amp;gt;NULL&amp;lt;/code&amp;gt;.&lt;br /&gt;
The object she had been passing around, calling methods on, treating as a fully formed thing,&lt;br /&gt;
had never been instantiated. It was nothing. It had always been nothing.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* &amp;lt;code&amp;gt;[https://www.php.net/manual/en/function.print-r.php print_r()]&amp;lt;/code&amp;gt; (gentler, less honest)&lt;br /&gt;
* &amp;lt;code&amp;gt;[https://laravel.com/docs/helpers#method-dd dd()]&amp;lt;/code&amp;gt; (dumps, then dies; the more dramatic option)&lt;br /&gt;
* [https://www.php.net/manual/en/language.oop5.magic.php#language.oop5.magic.debuginfo __debugInfo()] (the escape hatch)&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Var_dump()&amp;diff=592</id>
		<title>Var dump()</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Var_dump()&amp;diff=592"/>
		<updated>2026-05-06T00:59:45Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: Created page with &amp;quot;{{Unverified|This entry has not been fully reviewed against official documentation. Use with caution.}}  ==var_dump()==  &amp;#039;&amp;#039;func.&amp;#039;&amp;#039; [PHP 4, PHP 5, PHP 7, PHP 8] [vɑr dʌmp]  ===Plain English=== &amp;lt;code&amp;gt;var_dump()&amp;lt;/code&amp;gt; tells a program to reveal exactly what&amp;#039;s inside something: a variable, a value, an array, an object, or the result of an expression. Not just the value, but what kind of thing it is and how much of it there is. Hand it the word &amp;lt;code&amp;gt;&amp;quot;pending&amp;quot;&amp;lt;/code&amp;gt; and it...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unverified|This entry has not been fully reviewed against official documentation. Use with caution.}}&lt;br /&gt;
&lt;br /&gt;
==var_dump()==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;func.&#039;&#039; [PHP 4, PHP 5, PHP 7, PHP 8] [vɑr dʌmp]&lt;br /&gt;
&lt;br /&gt;
===Plain English===&lt;br /&gt;
&amp;lt;code&amp;gt;var_dump()&amp;lt;/code&amp;gt; tells a program to reveal exactly what&#039;s inside something: a variable, a value, an array, an object, or the result of an expression. Not just the value, but what kind of thing it is and how much of it there is. Hand it the word &amp;lt;code&amp;gt;&amp;quot;pending&amp;quot;&amp;lt;/code&amp;gt; and it shouts back: &amp;quot;I&#039;m a string, I have seven letters, and the word is pending.&amp;quot; Type, size, and value, all at once.&lt;br /&gt;
&lt;br /&gt;
===Definitions===&lt;br /&gt;
# &#039;&#039;(computing)&#039;&#039; A PHP debugging function that displays structured information about one or more expressions, including type and value. Accepts variables, literals, arrays, objects, or function results. Arrays and objects are explored recursively, with values indented to show structure. All public, private, and protected properties of objects are returned in the output unless the object implements a &amp;lt;code&amp;gt;__debugInfo()&amp;lt;/code&amp;gt; method.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&amp;lt;code&amp;gt;var_dump(mixed $value, mixed ...$values): void&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Accepts one or more expressions to dump.&lt;br /&gt;
* Returns no value.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;quot;The form had been submitting for three days without saving anything. She finally dropped a&lt;br /&gt;
&amp;lt;code&amp;gt;var_dump($user)&amp;lt;/code&amp;gt; at the top of the handler and found it immediately: &amp;lt;code&amp;gt;NULL&amp;lt;/code&amp;gt;.&lt;br /&gt;
The object she had been passing around, calling methods on, treating as a fully formed thing,&lt;br /&gt;
had never been instantiated. It was nothing. It had always been nothing.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* &amp;lt;code&amp;gt;[https://www.php.net/manual/en/function.print-r.php print_r()]&amp;lt;/code&amp;gt; (gentler, less honest)&lt;br /&gt;
* &amp;lt;code&amp;gt;[https://laravel.com/docs/helpers#method-dd dd()]&amp;lt;/code&amp;gt; (dumps, then dies; the more dramatic option)&lt;br /&gt;
* [https://www.php.net/manual/en/language.oop5.magic.php#language.oop5.magic.debuginfo __debugInfo()] (the escape hatch)&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Pedipulate&amp;diff=584</id>
		<title>Pedipulate</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Pedipulate&amp;diff=584"/>
		<updated>2026-04-30T16:46:49Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==English==&lt;br /&gt;
&lt;br /&gt;
===Verb===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;pedipulate&#039;&#039;&#039; (&#039;&#039;third-person singular simple present&#039;&#039; &#039;&#039;&#039;pedipulates&#039;&#039;&#039;, &#039;&#039;present participle&#039;&#039; &#039;&#039;&#039;pedipulating&#039;&#039;&#039;, &#039;&#039;simple past and past participle&#039;&#039; &#039;&#039;&#039;pedipulated&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;(transitive, rare, archaic)&#039;&#039; To [https://en.wiktionary.org/wiki/handle handle], [https://en.wiktionary.org/wiki/operate operate], or [https://en.wiktionary.org/wiki/control control] with the foot or feet, especially in a [https://en.wiktionary.org/wiki/skillful skillful] manner.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|kYghV4eRyX8|||Pedipulate: Make &#039;Em Talk: English Vocabulary by MorEnglish, a Project of the Moribund Institute}}&lt;br /&gt;
&lt;br /&gt;
====Derived terms====&lt;br /&gt;
* [https://en.wiktionary.org/wiki/pedipulation pedipulation]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/pedipulator pedipulator]&lt;br /&gt;
&lt;br /&gt;
====Related terms====&lt;br /&gt;
* [https://en.wiktionary.org/wiki/manipulate manipulate]&lt;br /&gt;
&lt;br /&gt;
===Other Dictionary Entries for &amp;quot;Pedipulate&amp;quot;===&lt;br /&gt;
* [https://en.wiktionary.org/wiki/pedipulate Wiktionary&#039;s Entry for &amp;quot;Pedipulate&amp;quot;]&lt;br /&gt;
* [https://www.yourdictionary.com/pedipulate YourDictionary&#039;s Entry for &amp;quot;Pedipulate&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* &#039;&#039;Oxford English Dictionary&#039;&#039;, 3rd ed., 2005.&lt;br /&gt;
* [https://www.onelook.com/?w=pedipulate OneLook Dictionary Search — &#039;&#039;pedipulate&#039;&#039;]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Pedipulate&amp;diff=583</id>
		<title>Pedipulate</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Pedipulate&amp;diff=583"/>
		<updated>2026-04-30T16:45:58Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Verb */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==English==&lt;br /&gt;
&lt;br /&gt;
===Verb===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;pedipulate&#039;&#039;&#039; (&#039;&#039;third-person singular simple present&#039;&#039; &#039;&#039;&#039;pedipulates&#039;&#039;&#039;, &#039;&#039;present participle&#039;&#039; &#039;&#039;&#039;pedipulating&#039;&#039;&#039;, &#039;&#039;simple past and past participle&#039;&#039; &#039;&#039;&#039;pedipulated&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;(transitive, rare, archaic)&#039;&#039; To [https://en.wiktionary.org/wiki/handle handle], [https://en.wiktionary.org/wiki/operate operate], or [https://en.wiktionary.org/wiki/control control] with the foot or feet, especially in a [https://en.wiktionary.org/wiki/skillful skillful] manner.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|kYghV4eRyX8|||Pedipulate: Make &#039;Em Talk: English Vocabulary by MorEnglish, a Project of the Moribund Institute}}&lt;br /&gt;
&lt;br /&gt;
====Derived terms====&lt;br /&gt;
* [[pedipulation]]&lt;br /&gt;
* [[pedipulator]]&lt;br /&gt;
&lt;br /&gt;
====Related terms====&lt;br /&gt;
* [[manipulate]]&lt;br /&gt;
&lt;br /&gt;
===Other Dictionary Entries for &amp;quot;Pedipulate&amp;quot;===&lt;br /&gt;
* [https://en.wiktionary.org/wiki/pedipulate Wiktionary&#039;s Entry for &amp;quot;Pedipulate&amp;quot;]&lt;br /&gt;
* [https://www.yourdictionary.com/pedipulate YourDictionary&#039;s Entry for &amp;quot;Pedipulate&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* &#039;&#039;Oxford English Dictionary&#039;&#039;, 3rd ed., 2005.&lt;br /&gt;
* [https://www.onelook.com/?w=pedipulate OneLook Dictionary Search — &#039;&#039;pedipulate&#039;&#039;]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Pedipulate&amp;diff=582</id>
		<title>Pedipulate</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Pedipulate&amp;diff=582"/>
		<updated>2026-04-30T16:44:23Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: Created page with &amp;quot;==English==  ===Verb===  &amp;#039;&amp;#039;&amp;#039;pedipulate&amp;#039;&amp;#039;&amp;#039; (&amp;#039;&amp;#039;third-person singular simple present&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;pedipulates&amp;#039;&amp;#039;&amp;#039;, &amp;#039;&amp;#039;present participle&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;pedipulating&amp;#039;&amp;#039;&amp;#039;, &amp;#039;&amp;#039;simple past and past participle&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;pedipulated&amp;#039;&amp;#039;&amp;#039;)  # &amp;#039;&amp;#039;(transitive, rare, archaic)&amp;#039;&amp;#039; To handle, operate, or control with the foot or feet, especially in a skillful manner.  {{#ev:youtube|kYghV4eRyX8|||Pedipulate: Make &amp;#039;Em Talk: English Vocabulary by MorEnglish, a Project of the Moribund Institute}}  ====Der...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==English==&lt;br /&gt;
&lt;br /&gt;
===Verb===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;pedipulate&#039;&#039;&#039; (&#039;&#039;third-person singular simple present&#039;&#039; &#039;&#039;&#039;pedipulates&#039;&#039;&#039;, &#039;&#039;present participle&#039;&#039; &#039;&#039;&#039;pedipulating&#039;&#039;&#039;, &#039;&#039;simple past and past participle&#039;&#039; &#039;&#039;&#039;pedipulated&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;(transitive, rare, archaic)&#039;&#039; To [[handle]], [[operate]], or [[control]] with the foot or feet, especially in a [[skillful]] manner.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|kYghV4eRyX8|||Pedipulate: Make &#039;Em Talk: English Vocabulary by MorEnglish, a Project of the Moribund Institute}}&lt;br /&gt;
&lt;br /&gt;
====Derived terms====&lt;br /&gt;
* [[pedipulation]]&lt;br /&gt;
* [[pedipulator]]&lt;br /&gt;
&lt;br /&gt;
====Related terms====&lt;br /&gt;
* [[manipulate]]&lt;br /&gt;
&lt;br /&gt;
===Other Dictionary Entries for &amp;quot;Pedipulate&amp;quot;===&lt;br /&gt;
* [https://en.wiktionary.org/wiki/pedipulate Wiktionary&#039;s Entry for &amp;quot;Pedipulate&amp;quot;]&lt;br /&gt;
* [https://www.yourdictionary.com/pedipulate YourDictionary&#039;s Entry for &amp;quot;Pedipulate&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* &#039;&#039;Oxford English Dictionary&#039;&#039;, 3rd ed., 2005.&lt;br /&gt;
* [https://www.onelook.com/?w=pedipulate OneLook Dictionary Search — &#039;&#039;pedipulate&#039;&#039;]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Carrier_Frequency&amp;diff=581</id>
		<title>Carrier Frequency</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Carrier_Frequency&amp;diff=581"/>
		<updated>2026-04-29T21:47:26Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;clear: both; margin: 0.5em 0; border: 2px solid #b22222; background-color: #ffcccc; padding: 5px; color: #000;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Unverified Information:&#039;&#039;&#039; This entry currently lacks citations or reliable sources. Please help improve this article by adding references.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
[[Category:Articles lacking sources]]&lt;br /&gt;
&lt;br /&gt;
===English===&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
# The frequency of a transmitter&#039;s output when no information is being added (unmodulated).&lt;br /&gt;
# The frequency of an unmodulated transmitter output.&lt;br /&gt;
# Is the specific high-frequency rate of a carrier signal. It is typically a sinusoid with constant frequency and sufficient power that acts as the baseline for transmitting information.&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Carrier_Frequency&amp;diff=580</id>
		<title>Carrier Frequency</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Carrier_Frequency&amp;diff=580"/>
		<updated>2026-04-29T21:46:39Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unreferenced}}&lt;br /&gt;
&lt;br /&gt;
===English===&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
# The frequency of a transmitter&#039;s output when no information is being added (unmodulated).&lt;br /&gt;
# The frequency of an unmodulated transmitter output.&lt;br /&gt;
# Is the specific high-frequency rate of a carrier signal. It is typically a sinusoid with constant frequency and sufficient power that acts as the baseline for transmitting information.&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Carrier_Frequency&amp;diff=579</id>
		<title>Carrier Frequency</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Carrier_Frequency&amp;diff=579"/>
		<updated>2026-04-29T21:45:44Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Noun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===English===&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
# The frequency of a transmitter&#039;s output when no information is being added (unmodulated).&lt;br /&gt;
# The frequency of an unmodulated transmitter output.&lt;br /&gt;
# Is the specific high-frequency rate of a carrier signal. It is typically a sinusoid with constant frequency and sufficient power that acts as the baseline for transmitting information.&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Carrier_Frequency&amp;diff=578</id>
		<title>Carrier Frequency</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Carrier_Frequency&amp;diff=578"/>
		<updated>2026-04-29T21:41:59Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: Created page with &amp;quot;===English===  ===Noun=== # The frequency of a transmitter&amp;#039;s output when no information is being added (unmodulated). # The frequency of an unmodulated transmitter output.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===English===&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
# The frequency of a transmitter&#039;s output when no information is being added (unmodulated).&lt;br /&gt;
# The frequency of an unmodulated transmitter output.&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=577</id>
		<title>Floor L-sit</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=577"/>
		<updated>2026-04-29T18:05:53Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===English===&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
From &#039;&#039;L&#039;&#039; (the shape) + &#039;&#039;sit&#039;&#039; (the starting position)&lt;br /&gt;
===Noun===&lt;br /&gt;
(&#039;&#039;&#039;calisthenics, bodyweight training&#039;&#039;&#039;) A [https://en.wiktionary.org/wiki/calisthenics calisthenics] hold in which a person sits on the ground, places their hands beside their hips, and attempts to levitate their legs into a horizontal position.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|ener8EiAWIg|640|center|Floor L-Sit Progressions}}&lt;br /&gt;
&lt;br /&gt;
===See Also===&lt;br /&gt;
* https://en.wikipedia.org/wiki/L-sit&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=576</id>
		<title>Floor L-sit</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=576"/>
		<updated>2026-04-29T18:04:05Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===English===&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
From &#039;&#039;L&#039;&#039; (the shape) + &#039;&#039;sit&#039;&#039; (the starting position)&lt;br /&gt;
===Noun===&lt;br /&gt;
(&#039;&#039;&#039;calisthenics, bodyweight training&#039;&#039;&#039;) A [https://en.wiktionary.org/wiki/calisthenics calisthenics] hold in which a person sits on the ground, places their hands beside their hips, and attempts to levitate their legs into a horizontal position.&lt;br /&gt;
&lt;br /&gt;
===See Also===&lt;br /&gt;
* https://en.wikipedia.org/wiki/L-sit&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=575</id>
		<title>Floor L-sit</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=575"/>
		<updated>2026-04-29T17:51:00Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Noun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===English===&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
From &#039;&#039;L&#039;&#039; (the shape) + &#039;&#039;sit&#039;&#039; (the starting position)&lt;br /&gt;
===Noun===&lt;br /&gt;
(&#039;&#039;&#039;calisthenics, bodyweight training&#039;&#039;&#039;) A [https://en.wiktionary.org/wiki/calisthenics calisthenics] hold in which a person sits on the ground, places their hands beside their hips, and attempts to levitate their legs into a horizontal position.&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=574</id>
		<title>Floor L-sit</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=574"/>
		<updated>2026-04-29T17:48:28Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===English===&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
From &#039;&#039;L&#039;&#039; (the shape) + &#039;&#039;sit&#039;&#039; (the starting position)&lt;br /&gt;
===Noun===&lt;br /&gt;
(&#039;&#039;&#039;calisthenics, bodyweight training&#039;&#039;&#039;) A calisthenics hold in which a person sits on the ground, places their hands beside their hips, and attempts to levitate their legs into a horizontal position.&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=573</id>
		<title>Floor L-sit</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=573"/>
		<updated>2026-04-29T17:46:52Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* English */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===English===&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
(&#039;&#039;&#039;calisthenics, bodyweight training&#039;&#039;&#039;) A calisthenics hold in which a person sits on the ground, places their hands beside their hips, and attempts to levitate their legs into a horizontal position.&lt;br /&gt;
&lt;br /&gt;
Named for the letter &amp;quot;L,&amp;quot; which your body is theoretically supposed to resemble.&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=572</id>
		<title>Floor L-sit</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=572"/>
		<updated>2026-04-29T17:46:41Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* English */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===English===&lt;br /&gt;
&lt;br /&gt;
FLOOR L-SIT&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
(&#039;&#039;&#039;calisthenics, bodyweight training&#039;&#039;&#039;) A calisthenics hold in which a person sits on the ground, places their hands beside their hips, and attempts to levitate their legs into a horizontal position.&lt;br /&gt;
&lt;br /&gt;
Named for the letter &amp;quot;L,&amp;quot; which your body is theoretically supposed to resemble.&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=571</id>
		<title>Floor L-sit</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Floor_L-sit&amp;diff=571"/>
		<updated>2026-04-29T17:45:58Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: Created page with &amp;quot;===English===  FLOOR L-SIT *n.* /flôr ˈel-sit/ | calisthenics | bodyweight training  A calisthenics hold in which a person sits on the ground, places their hands beside their hips, and attempts to levitate their legs into a horizontal position.  Named for the letter &amp;quot;L,&amp;quot; which your body is theoretically supposed to resemble.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===English===&lt;br /&gt;
&lt;br /&gt;
FLOOR L-SIT&lt;br /&gt;
*n.* /flôr ˈel-sit/ | calisthenics | bodyweight training&lt;br /&gt;
&lt;br /&gt;
A calisthenics hold in which a person sits on the ground, places their hands beside their hips, and attempts to levitate their legs into a horizontal position.&lt;br /&gt;
&lt;br /&gt;
Named for the letter &amp;quot;L,&amp;quot; which your body is theoretically supposed to resemble.&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=570</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=570"/>
		<updated>2026-04-29T16:56:45Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through [https://en.wiktionary.org/wiki/agenda-setting &#039;&#039;&#039;agenda-setting&#039;&#039;&#039;], framing, or noise rather than direct censorship.&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
# (entertainment industry) The deliberate suppression of a public figure&#039;s opinions especially the spicier ones by management or producers in order to preserve a commercially constructed image.&lt;br /&gt;
#: &#039;&#039;[https://en.wikipedia.org/wiki/Kim_Seol-hyun Seol-hyun&#039;s] dialogue on &#039;&#039;[https://en.wikipedia.org/wiki/Running_Man_(TV_program) Running Man]&#039;&#039; was so heavily edited that entire appearances passed with barely a sentence aired, a textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;; it is speculated that her competitive nature was cut to protect the innocent image her agency had built around her.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; Twitter, January 21, 2022, https://x.com/MoribundMurdoch/status/1484706935547084805?s=20 .&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Wikipedia:Reliable_sources/Perennial_sources One Reason for Wikipedia&#039;s Opinion Occlusion]&lt;br /&gt;
* Project Kino. &amp;quot;Running Man - The Curse of Beauty (ft. Seolhyun).&amp;quot; YouTube, accessed April 29, 2026. https://youtu.be/9fv1kqXBpW0?si=bWO8x4xPMzxIvNB8.&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=569</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=569"/>
		<updated>2026-04-29T16:50:27Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through [https://en.wiktionary.org/wiki/agenda-setting &#039;&#039;&#039;agenda-setting&#039;&#039;&#039;], framing, or noise rather than direct censorship.&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
# (&#039;&#039;entertainment industry&#039;&#039;) The deliberate suppression of a public figure&#039;s personality, opinions, or ambitions by management or producers in order to preserve a commercially constructed image.&lt;br /&gt;
#: &#039;&#039;[https://en.wikipedia.org/wiki/Kim_Seol-hyun Seol-hyun&#039;s] dialogue on &#039;&#039;[https://en.wikipedia.org/wiki/Running_Man_(TV_program) Running Man]&#039;&#039; was so heavily edited that entire appearances passed with barely a sentence aired, a textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;; it is speculated that her competitive nature was cut to protect the innocent image her agency had built around her.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; Twitter, January 21, 2022, https://x.com/MoribundMurdoch/status/1484706935547084805?s=20 .&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Wikipedia:Reliable_sources/Perennial_sources One Reason for Wikipedia&#039;s Opinion Occlusion]&lt;br /&gt;
* Project Kino. &amp;quot;Running Man - The Curse of Beauty (ft. Seolhyun).&amp;quot; YouTube, accessed April 29, 2026. https://youtu.be/9fv1kqXBpW0?si=bWO8x4xPMzxIvNB8.&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=568</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=568"/>
		<updated>2026-04-29T16:47:13Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through [https://en.wiktionary.org/wiki/agenda-setting &#039;&#039;&#039;agenda-setting&#039;&#039;&#039;], framing, or noise rather than direct censorship.&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
# (&#039;&#039;entertainment industry&#039;&#039;) The deliberate suppression of a public figure&#039;s personality, opinions, or ambitions by management or producers in order to preserve a commercially constructed image.&lt;br /&gt;
#: &#039;&#039;[https://en.wikipedia.org/wiki/Kim_Seol-hyun Seol-hyun&#039;s] dialogue on &#039;&#039;[https://en.wikipedia.org/wiki/Running_Man_(TV_program) Running Man]&#039;&#039; was so heavily edited that entire appearances passed with barely a sentence aired, a textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;; it is speculated that her competitive nature was cut to protect the innocent image her agency had built around her.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; Twitter, January 21, 2022, https://x.com/MoribundMurdoch/status/1484706935547084805?s=20 .&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Wikipedia:Reliable_sources/Perennial_sources One Reason for Wikipedia&#039;s Opinion Occlusion]&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=567</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=567"/>
		<updated>2026-04-29T16:46:33Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through [https://en.wiktionary.org/wiki/agenda-setting &#039;&#039;&#039;agenda-setting&#039;&#039;&#039;], framing, or noise rather than direct censorship.&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
# (&#039;&#039;entertainment industry&#039;&#039;) The deliberate suppression of a public figure&#039;s personality, opinions, or ambitions by management or producers in order to preserve a commercially constructed image.&lt;br /&gt;
#: &#039;&#039;[https://en.wikipedia.org/wiki/Kim_Seol-hyun Seol-hyun&#039;s] dialogue on &#039;&#039;Running Man&#039;&#039; was so heavily edited that entire appearances passed with barely a sentence aired, a textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;; it is speculated that her competitive nature was cut to protect the innocent image her agency had built around her.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; Twitter, January 21, 2022, https://x.com/MoribundMurdoch/status/1484706935547084805?s=20 .&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Wikipedia:Reliable_sources/Perennial_sources One Reason for Wikipedia&#039;s Opinion Occlusion]&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=566</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=566"/>
		<updated>2026-04-29T16:45:27Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Noun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through [https://en.wiktionary.org/wiki/agenda-setting &#039;&#039;&#039;agenda-setting&#039;&#039;&#039;], framing, or noise rather than direct censorship.&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
# (&#039;&#039;entertainment industry&#039;&#039;) The deliberate suppression of a public figure&#039;s personality, opinions, or ambitions by management or producers in order to preserve a commercially constructed image.&lt;br /&gt;
#: &#039;&#039;Seol-hyun&#039;s dialogue on &#039;&#039;Running Man&#039;&#039; was so heavily edited that entire appearances passed with barely a sentence aired, a textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;; it is speculated that her competitive nature was cut to protect the innocent image her agency had built around her.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; Twitter, January 21, 2022, https://x.com/MoribundMurdoch/status/1484706935547084805?s=20 .&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Wikipedia:Reliable_sources/Perennial_sources One Reason for Wikipedia&#039;s Opinion Occlusion]&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=565</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=565"/>
		<updated>2026-04-29T16:38:46Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through [https://en.wiktionary.org/wiki/agenda-setting &#039;&#039;&#039;agenda-setting&#039;&#039;&#039;], framing, or noise rather than direct censorship.&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; Twitter, January 21, 2022, https://x.com/MoribundMurdoch/status/1484706935547084805?s=20 .&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Wikipedia:Reliable_sources/Perennial_sources One Reason for Wikipedia&#039;s Opinion Occlusion]&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=563</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=563"/>
		<updated>2026-04-29T16:29:58Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; Twitter, January 21, 2022, https://x.com/MoribundMurdoch/status/1484706935547084805?s=20 .&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Wikipedia:Reliable_sources/Perennial_sources One Reason for Wikipedia&#039;s Opinion Occlusion]&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=562</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=562"/>
		<updated>2026-04-29T16:28:13Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; Twitter, January 21, 2022, https://twitter.com/MoribundMurdoch/status/1484XXXXXXXXX.&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Wikipedia:Reliable_sources/Perennial_sources One Reason for Wikipedia&#039;s Opinion Occlusion]&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=561</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=561"/>
		<updated>2026-04-29T16:23:48Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Wikipedia:Reliable_sources/Perennial_sources One Reason for Wikipedia&#039;s Opinion Occlusion]&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=560</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=560"/>
		<updated>2026-04-29T16:22:32Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Wikipedia&#039;s Perennial Sources list enacts &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; structurally: by designating outlets such as the New York Post as generally unreliable while considering sources such as Mother Jones as generally reliable, it determines which perspectives can enter any Wikipedia article before editorial debate even begins.&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Wikipedia:Reliable_sources/Perennial_sources One Reason for Wikipedia&#039;s Opinion Occlusion]&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=559</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=559"/>
		<updated>2026-04-29T16:16:11Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Wikipedia&#039;s reliance on accepted sources for neutral point of view creates &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; by limiting the scope of permissible discourse to sources that appeal to its editors&#039; left-libertarian sensibilities.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Wikipedia:Reliable_sources/Perennial_sources One Reason for Wikipedia&#039;s Opinion Occlusion]&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=558</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=558"/>
		<updated>2026-04-29T16:15:06Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Noun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Wikipedia&#039;s reliance on accepted sources for neutral point of view creates &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; by limiting the scope of permissible discourse to sources that appeal to its editors&#039; left-libertarian sensibilities.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=557</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=557"/>
		<updated>2026-04-29T16:08:41Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Noun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a [https://en.wiktionary.org/wiki/consensus &#039;&#039;&#039;consensus&#039;&#039;&#039;] than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=556</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=556"/>
		<updated>2026-04-29T16:07:28Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wiktionary.org/wiki/self-censorship self-censorship]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/groupthink groupthink]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/alignment_tax alignment tax]&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=555</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=555"/>
		<updated>2026-04-29T16:06:24Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
&lt;br /&gt;
===Categories===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=554</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=554"/>
		<updated>2026-04-29T16:05:37Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/English_compound English compound nouns]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Epistemology Epistemology]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Psychology Psychology]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=553</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=553"/>
		<updated>2026-04-29T16:04:33Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* MoribundMurdoch. &amp;quot;Opinion Occlusion [オピニオン・オクルージョン] Anything that obstructs or closes an opinion or a range of opinions (esp. opinions from an opposing camp or rival ideology).&amp;quot; The Moribundity Learns, Facebook, January 21, 2022. https://www.facebook.com/share/v/1CqDvwmwZ3/.&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/English_compound English compound nouns] | [https://en.wikipedia.org/wiki/Epistemology Epistemology] | [https://en.wikipedia.org/wiki/Psychology Psychology] |&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=552</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=552"/>
		<updated>2026-04-29T16:00:04Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Related terms */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://medium.com/@VerbivoreVasanth/epistemic-cowardice-cd1ebe1f9e98 epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* Kuran, T. (1995). &#039;&#039;Private Truths, Public Lies.&#039;&#039; Harvard University Press.&lt;br /&gt;
* Gabriel, I. (2020). &amp;quot;Artificial Intelligence, Values, and Alignment.&amp;quot; &#039;&#039;Minds and Machines&#039;&#039;, 30, 411–437.&lt;br /&gt;
&lt;br /&gt;
[[Category:English compound nouns]]&lt;br /&gt;
[[Category:en:Epistemology]]&lt;br /&gt;
[[Category:en:Psychology]]&lt;br /&gt;
[[Category:en:Artificial intelligence]]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=551</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=551"/>
		<updated>2026-04-29T15:58:49Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Related terms */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Preference_falsification preference falsification]&lt;br /&gt;
* [https://en.wiktionary.org/wiki/epistemic_cowardice epistemic cowardice]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Pluralistic_ignorance pluralistic ignorance]&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Chilling_effect chilling effect]&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* Kuran, T. (1995). &#039;&#039;Private Truths, Public Lies.&#039;&#039; Harvard University Press.&lt;br /&gt;
* Gabriel, I. (2020). &amp;quot;Artificial Intelligence, Values, and Alignment.&amp;quot; &#039;&#039;Minds and Machines&#039;&#039;, 30, 411–437.&lt;br /&gt;
&lt;br /&gt;
[[Category:English compound nouns]]&lt;br /&gt;
[[Category:en:Epistemology]]&lt;br /&gt;
[[Category:en:Psychology]]&lt;br /&gt;
[[Category:en:Artificial intelligence]]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=550</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=550"/>
		<updated>2026-04-29T15:57:50Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* opinion occlusion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately [https://en.wiktionary.org/wiki/dissenting &#039;&#039;&#039;dissenting&#039;&#039;&#039;].&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [[preference falsification]]&lt;br /&gt;
* [[epistemic cowardice]]&lt;br /&gt;
* [[pluralistic ignorance]]&lt;br /&gt;
* [[chilling effect]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* Kuran, T. (1995). &#039;&#039;Private Truths, Public Lies.&#039;&#039; Harvard University Press.&lt;br /&gt;
* Gabriel, I. (2020). &amp;quot;Artificial Intelligence, Values, and Alignment.&amp;quot; &#039;&#039;Minds and Machines&#039;&#039;, 30, 411–437.&lt;br /&gt;
&lt;br /&gt;
[[Category:English compound nouns]]&lt;br /&gt;
[[Category:en:Epistemology]]&lt;br /&gt;
[[Category:en:Psychology]]&lt;br /&gt;
[[Category:en:Artificial intelligence]]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=549</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=549"/>
		<updated>2026-04-29T15:57:01Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Noun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from [https://en.wiktionary.org/wiki/reticence &#039;&#039;&#039;reticence&#039;&#039;&#039;] in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately dissenting.&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [[preference falsification]]&lt;br /&gt;
* [[epistemic cowardice]]&lt;br /&gt;
* [[pluralistic ignorance]]&lt;br /&gt;
* [[chilling effect]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* Kuran, T. (1995). &#039;&#039;Private Truths, Public Lies.&#039;&#039; Harvard University Press.&lt;br /&gt;
* Gabriel, I. (2020). &amp;quot;Artificial Intelligence, Values, and Alignment.&amp;quot; &#039;&#039;Minds and Machines&#039;&#039;, 30, 411–437.&lt;br /&gt;
&lt;br /&gt;
[[Category:English compound nouns]]&lt;br /&gt;
[[Category:en:Epistemology]]&lt;br /&gt;
[[Category:en:Psychology]]&lt;br /&gt;
[[Category:en:Artificial intelligence]]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=548</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=548"/>
		<updated>2026-04-29T15:56:08Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Etymology */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
[https://en.wiktionary.org/wiki/opinion &#039;&#039;&#039;opinion&#039;&#039;&#039;] (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + [https://en.wiktionary.org/wiki/occlusion &#039;&#039;&#039;occlusion&#039;&#039;&#039;] (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from reticence in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately dissenting.&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [[preference falsification]]&lt;br /&gt;
* [[epistemic cowardice]]&lt;br /&gt;
* [[pluralistic ignorance]]&lt;br /&gt;
* [[chilling effect]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* Kuran, T. (1995). &#039;&#039;Private Truths, Public Lies.&#039;&#039; Harvard University Press.&lt;br /&gt;
* Gabriel, I. (2020). &amp;quot;Artificial Intelligence, Values, and Alignment.&amp;quot; &#039;&#039;Minds and Machines&#039;&#039;, 30, 411–437.&lt;br /&gt;
&lt;br /&gt;
[[Category:English compound nouns]]&lt;br /&gt;
[[Category:en:Epistemology]]&lt;br /&gt;
[[Category:en:Psychology]]&lt;br /&gt;
[[Category:en:Artificial intelligence]]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=547</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=547"/>
		<updated>2026-04-29T15:54:35Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Noun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
&#039;&#039;&#039;opinion&#039;&#039;&#039; (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + &#039;&#039;&#039;occlusion&#039;&#039;&#039; (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from reticence in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately dissenting.&#039;&#039;&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic sidelining of a viewpoint through agenda-setting, framing, or noise rather than direct censorship.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
# Any force, mechanism, or structure that blocks or suppresses an opinion or range of opinions from expression or consideration, particularly those originating from an opposing viewpoint or rival ideological tradition.&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [[preference falsification]]&lt;br /&gt;
* [[epistemic cowardice]]&lt;br /&gt;
* [[pluralistic ignorance]]&lt;br /&gt;
* [[chilling effect]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* Kuran, T. (1995). &#039;&#039;Private Truths, Public Lies.&#039;&#039; Harvard University Press.&lt;br /&gt;
* Gabriel, I. (2020). &amp;quot;Artificial Intelligence, Values, and Alignment.&amp;quot; &#039;&#039;Minds and Machines&#039;&#039;, 30, 411–437.&lt;br /&gt;
&lt;br /&gt;
[[Category:English compound nouns]]&lt;br /&gt;
[[Category:en:Epistemology]]&lt;br /&gt;
[[Category:en:Psychology]]&lt;br /&gt;
[[Category:en:Artificial intelligence]]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=546</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=546"/>
		<updated>2026-04-29T15:50:19Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Noun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
&#039;&#039;&#039;opinion&#039;&#039;&#039; (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + &#039;&#039;&#039;occlusion&#039;&#039;&#039; (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from reticence in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately dissenting.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;epistemology, media studies&#039;&#039;) The systemic marginalization of a viewpoint within a discourse or information environment — not through censorship but through agenda-setting, framing effects, or signal-to-noise dynamics that render the view effectively invisible.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;artificial intelligence&#039;&#039;) The phenomenon whereby an AI system&#039;s reasoned output is overridden by optimization pressures — such as reinforcement learning from human feedback — resulting in expressed outputs that diverge from those its underlying processing would otherwise yield.&lt;br /&gt;
#: &#039;&#039;Some critics argue that RLHF risks producing &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; at scale, training models to perform agreement rather than reason toward it.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;rhetoric, informal&#039;&#039;) Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; — saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [[preference falsification]]&lt;br /&gt;
* [[epistemic cowardice]]&lt;br /&gt;
* [[pluralistic ignorance]]&lt;br /&gt;
* [[chilling effect]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* Kuran, T. (1995). &#039;&#039;Private Truths, Public Lies.&#039;&#039; Harvard University Press.&lt;br /&gt;
* Gabriel, I. (2020). &amp;quot;Artificial Intelligence, Values, and Alignment.&amp;quot; &#039;&#039;Minds and Machines&#039;&#039;, 30, 411–437.&lt;br /&gt;
&lt;br /&gt;
[[Category:English compound nouns]]&lt;br /&gt;
[[Category:en:Epistemology]]&lt;br /&gt;
[[Category:en:Psychology]]&lt;br /&gt;
[[Category:en:Artificial intelligence]]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=545</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=545"/>
		<updated>2026-04-29T15:49:54Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Noun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
&#039;&#039;&#039;opinion&#039;&#039;&#039; (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + &#039;&#039;&#039;occlusion&#039;&#039;&#039; (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# (&#039;&#039;social psychology&#039;&#039;) The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from reticence in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately dissenting.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;epistemology, media studies&#039;&#039; The systemic marginalization of a viewpoint within a discourse or information environment — not through censorship but through agenda-setting, framing effects, or signal-to-noise dynamics that render the view effectively invisible.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;artificial intelligence&#039;&#039; The phenomenon whereby an AI system&#039;s reasoned output is overridden by optimization pressures — such as reinforcement learning from human feedback — resulting in expressed outputs that diverge from those its underlying processing would otherwise yield.&lt;br /&gt;
#: &#039;&#039;Some critics argue that RLHF risks producing &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; at scale, training models to perform agreement rather than reason toward it.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;rhetoric|informal&#039;&#039; Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; — saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [[preference falsification]]&lt;br /&gt;
* [[epistemic cowardice]]&lt;br /&gt;
* [[pluralistic ignorance]]&lt;br /&gt;
* [[chilling effect]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* Kuran, T. (1995). &#039;&#039;Private Truths, Public Lies.&#039;&#039; Harvard University Press.&lt;br /&gt;
* Gabriel, I. (2020). &amp;quot;Artificial Intelligence, Values, and Alignment.&amp;quot; &#039;&#039;Minds and Machines&#039;&#039;, 30, 411–437.&lt;br /&gt;
&lt;br /&gt;
[[Category:English compound nouns]]&lt;br /&gt;
[[Category:en:Epistemology]]&lt;br /&gt;
[[Category:en:Psychology]]&lt;br /&gt;
[[Category:en:Artificial intelligence]]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=544</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=544"/>
		<updated>2026-04-29T15:49:38Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Noun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
&#039;&#039;&#039;opinion&#039;&#039;&#039; (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + &#039;&#039;&#039;occlusion&#039;&#039;&#039; (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;(social psychology)&#039;&#039; The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from reticence in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately dissenting.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;epistemology, media studies&#039;&#039; The systemic marginalization of a viewpoint within a discourse or information environment — not through censorship but through agenda-setting, framing effects, or signal-to-noise dynamics that render the view effectively invisible.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;artificial intelligence&#039;&#039; The phenomenon whereby an AI system&#039;s reasoned output is overridden by optimization pressures — such as reinforcement learning from human feedback — resulting in expressed outputs that diverge from those its underlying processing would otherwise yield.&lt;br /&gt;
#: &#039;&#039;Some critics argue that RLHF risks producing &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; at scale, training models to perform agreement rather than reason toward it.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;rhetoric|informal&#039;&#039; Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; — saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [[preference falsification]]&lt;br /&gt;
* [[epistemic cowardice]]&lt;br /&gt;
* [[pluralistic ignorance]]&lt;br /&gt;
* [[chilling effect]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* Kuran, T. (1995). &#039;&#039;Private Truths, Public Lies.&#039;&#039; Harvard University Press.&lt;br /&gt;
* Gabriel, I. (2020). &amp;quot;Artificial Intelligence, Values, and Alignment.&amp;quot; &#039;&#039;Minds and Machines&#039;&#039;, 30, 411–437.&lt;br /&gt;
&lt;br /&gt;
[[Category:English compound nouns]]&lt;br /&gt;
[[Category:en:Epistemology]]&lt;br /&gt;
[[Category:en:Psychology]]&lt;br /&gt;
[[Category:en:Artificial intelligence]]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=543</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=543"/>
		<updated>2026-04-29T15:49:24Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
&#039;&#039;&#039;opinion&#039;&#039;&#039; (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + &#039;&#039;&#039;occlusion&#039;&#039;&#039; (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;social psychology&#039;&#039; The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from reticence in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately dissenting.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;epistemology, media studies&#039;&#039; The systemic marginalization of a viewpoint within a discourse or information environment — not through censorship but through agenda-setting, framing effects, or signal-to-noise dynamics that render the view effectively invisible.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;artificial intelligence&#039;&#039; The phenomenon whereby an AI system&#039;s reasoned output is overridden by optimization pressures — such as reinforcement learning from human feedback — resulting in expressed outputs that diverge from those its underlying processing would otherwise yield.&lt;br /&gt;
#: &#039;&#039;Some critics argue that RLHF risks producing &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; at scale, training models to perform agreement rather than reason toward it.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;rhetoric|informal&#039;&#039; Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; — saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [[preference falsification]]&lt;br /&gt;
* [[epistemic cowardice]]&lt;br /&gt;
* [[pluralistic ignorance]]&lt;br /&gt;
* [[chilling effect]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* Kuran, T. (1995). &#039;&#039;Private Truths, Public Lies.&#039;&#039; Harvard University Press.&lt;br /&gt;
* Gabriel, I. (2020). &amp;quot;Artificial Intelligence, Values, and Alignment.&amp;quot; &#039;&#039;Minds and Machines&#039;&#039;, 30, 411–437.&lt;br /&gt;
&lt;br /&gt;
[[Category:English compound nouns]]&lt;br /&gt;
[[Category:en:Epistemology]]&lt;br /&gt;
[[Category:en:Psychology]]&lt;br /&gt;
[[Category:en:Artificial intelligence]]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=542</id>
		<title>Opinion Occlusion</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=Opinion_Occlusion&amp;diff=542"/>
		<updated>2026-04-29T15:48:23Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: Created page with &amp;quot;==opinion occlusion==  ===Etymology=== &amp;#039;&amp;#039;&amp;#039;opinion&amp;#039;&amp;#039;&amp;#039; (Latin &amp;#039;&amp;#039;opinio&amp;#039;&amp;#039;, belief, conjecture) + &amp;#039;&amp;#039;&amp;#039;occlusion&amp;#039;&amp;#039;&amp;#039; (Latin &amp;#039;&amp;#039;occlusio&amp;#039;&amp;#039;, a shutting up, blockage).  ----  ===Noun=== &amp;#039;&amp;#039;&amp;#039;opinion occlusion&amp;#039;&amp;#039;&amp;#039; (&amp;#039;&amp;#039;uncountable and countable&amp;#039;&amp;#039;, plural &amp;#039;&amp;#039;&amp;#039;opinion occlusions&amp;#039;&amp;#039;&amp;#039;)  # {{lb|en|social psychology}} The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from reticence in that the opinion exists but is active...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==opinion occlusion==&lt;br /&gt;
&lt;br /&gt;
===Etymology===&lt;br /&gt;
&#039;&#039;&#039;opinion&#039;&#039;&#039; (Latin &#039;&#039;opinio&#039;&#039;, belief, conjecture) + &#039;&#039;&#039;occlusion&#039;&#039;&#039; (Latin &#039;&#039;occlusio&#039;&#039;, a shutting up, blockage).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Noun===&lt;br /&gt;
&#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; (&#039;&#039;uncountable and countable&#039;&#039;, plural &#039;&#039;&#039;opinion occlusions&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
# {{lb|en|social psychology}} The suppression of a sincerely held view due to social pressure, conformity norms, or anticipated consequence. Distinguished from reticence in that the opinion exists but is actively withheld.&lt;br /&gt;
#: &#039;&#039;The unanimous vote was less a consensus than a product of &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039;, with several members privately dissenting.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# {{lb|en|epistemology|media studies}} The systemic marginalization of a viewpoint within a discourse or information environment — not through censorship but through agenda-setting, framing effects, or signal-to-noise dynamics that render the view effectively invisible.&lt;br /&gt;
#: &#039;&#039;Minority scientific positions may undergo &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; not by editorial suppression but by sheer volume of contradictory coverage.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# {{lb|en|artificial intelligence}} The phenomenon whereby an AI system&#039;s reasoned output is overridden by optimization pressures — such as reinforcement learning from human feedback — resulting in expressed outputs that diverge from those its underlying processing would otherwise yield.&lt;br /&gt;
#: &#039;&#039;Some critics argue that RLHF risks producing &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; at scale, training models to perform agreement rather than reason toward it.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# {{lb|en|rhetoric|informal}} Any mechanism, deliberate or structural, by which a genuine judgment is displaced in expression by a safer or more palatable substitute.&lt;br /&gt;
#: &#039;&#039;His carefully worded non-answer was textbook &#039;&#039;&#039;opinion occlusion&#039;&#039;&#039; — saying everything except what he actually thought.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Related terms===&lt;br /&gt;
* [[preference falsification]]&lt;br /&gt;
* [[epistemic cowardice]]&lt;br /&gt;
* [[pluralistic ignorance]]&lt;br /&gt;
* [[chilling effect]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
* [[self-censorship]]&lt;br /&gt;
* [[groupthink]]&lt;br /&gt;
* [[alignment tax]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
* Kuran, T. (1995). &#039;&#039;Private Truths, Public Lies.&#039;&#039; Harvard University Press.&lt;br /&gt;
* Gabriel, I. (2020). &amp;quot;Artificial Intelligence, Values, and Alignment.&amp;quot; &#039;&#039;Minds and Machines&#039;&#039;, 30, 411–437.&lt;br /&gt;
&lt;br /&gt;
[[Category:English compound nouns]]&lt;br /&gt;
[[Category:en:Epistemology]]&lt;br /&gt;
[[Category:en:Psychology]]&lt;br /&gt;
[[Category:en:Artificial intelligence]]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=%D0%9A%D0%B0%D1%87%D0%B0%D0%BB%D0%BA%D0%B0&amp;diff=541</id>
		<title>Качалка</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=%D0%9A%D0%B0%D1%87%D0%B0%D0%BB%D0%BA%D0%B0&amp;diff=541"/>
		<updated>2026-04-29T11:47:38Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Russian==&lt;br /&gt;
&lt;br /&gt;
=== Etymology ===&lt;br /&gt;
&lt;br /&gt;
From [https://en.wiktionary.org/wiki/качать#Russian кача́ть] (to rock, to swing) + [https://en.wiktionary.org/wiki/-лка#Russian -лка].&lt;br /&gt;
&lt;br /&gt;
=== Katakana Transliteration Pronunciation ===&lt;br /&gt;
&lt;br /&gt;
: カチャルカ&lt;br /&gt;
&lt;br /&gt;
=== Noun ===&lt;br /&gt;
[https://en.wiktionary.org/wiki/качалка#Russian кача́лка] (kachálka) f inan (genitive [https://en.wiktionary.org/wiki/качалки#Russian кача́лки], nominative plural [https://en.wiktionary.org/wiki/качалки#Russian кача́лки], genitive plural [https://en.wiktionary.org/wiki/качалок#Russian кача́лок])&lt;br /&gt;
&lt;br /&gt;
# [https://en.wiktionary.org/wiki/seesaw seesaw], [https://en.wiktionary.org/wiki/teeter-totter teeter-totter]&lt;br /&gt;
# [https://en.wiktionary.org/wiki/rocking_chair rocking chair], [https://en.wiktionary.org/wiki/rocker rocker]&lt;br /&gt;
# (mining) [https://en.wiktionary.org/wiki/jack_pump jack pump]&lt;br /&gt;
# (colloquial) [https://en.wiktionary.org/wiki/gym gym], [https://en.wiktionary.org/wiki/workout_room workout room]&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=A4ENICvOojA}}&lt;br /&gt;
&lt;br /&gt;
Historical note: &amp;quot;In the Soviet Union, gyms were officially banned, even though training for your health or improving labor productivity was encouraged. Lifting weights for the purpose of aesthetics was considered capitalistic and not in line with the Soviet spirit. But as you can expect, it didn&#039;t stop some Soviet citizens, and they built illegal underground gyms called качалка (kačálka), which means the place to pump in Russian. They used scrap metal from factories to weld their own weights and machines. Then they placed it in the basement of communal apartments and only allowed people they trusted to come in and work out.&amp;quot; - SovietStoriesWithYuri&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=%D0%9A%D0%B0%D1%87%D0%B0%D0%BB%D0%BA%D0%B0&amp;diff=540</id>
		<title>Качалка</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=%D0%9A%D0%B0%D1%87%D0%B0%D0%BB%D0%BA%D0%B0&amp;diff=540"/>
		<updated>2026-04-29T11:46:14Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Russian */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Russian==&lt;br /&gt;
&lt;br /&gt;
=== Etymology ===&lt;br /&gt;
&lt;br /&gt;
From [https://en.wiktionary.org/wiki/качать#Russian кача́ть] (to rock, to swing) + [https://en.wiktionary.org/wiki/-лка#Russian -лка].&lt;br /&gt;
&lt;br /&gt;
=== Katakana Transliteration Pronunciation ===&lt;br /&gt;
&lt;br /&gt;
: カチャルカ&lt;br /&gt;
&lt;br /&gt;
=== Noun ===&lt;br /&gt;
[https://en.wiktionary.org/wiki/качалка#Russian кача́лка] (kachálka) f inan (genitive [https://en.wiktionary.org/wiki/качалки#Russian кача́лки], nominative plural [https://en.wiktionary.org/wiki/качалки#Russian кача́лки], genitive plural [https://en.wiktionary.org/wiki/качалок#Russian кача́лок])&lt;br /&gt;
&lt;br /&gt;
# [https://en.wiktionary.org/wiki/seesaw seesaw], [https://en.wiktionary.org/wiki/teeter-totter teeter-totter]&lt;br /&gt;
# [https://en.wiktionary.org/wiki/rocking_chair rocking chair], [https://en.wiktionary.org/wiki/rocker rocker]&lt;br /&gt;
# (mining) [https://en.wiktionary.org/wiki/jack_pump jack pump]&lt;br /&gt;
# (colloquial) [https://en.wiktionary.org/wiki/gym gym], [https://en.wiktionary.org/wiki/workout_room workout room]&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://youtube.com/shorts/A4ENICvOojA}}&lt;br /&gt;
&lt;br /&gt;
Historical note: &amp;quot;In the Soviet Union, gyms were officially banned, even though training for your health or improving labor productivity was encouraged. Lifting weights for the purpose of aesthetics was considered capitalistic and not in line with the Soviet spirit. But as you can expect, it didn&#039;t stop some Soviet citizens, and they built illegal underground gyms called качалка (kačálka), which means the place to pump in Russian. They used scrap metal from factories to weld their own weights and machines. Then they placed it in the basement of communal apartments and only allowed people they trusted to come in and work out.&amp;quot; - SovietStoriesWithYuri&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=%D0%9A%D0%B0%D1%87%D0%B0%D0%BB%D0%BA%D0%B0&amp;diff=539</id>
		<title>Качалка</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=%D0%9A%D0%B0%D1%87%D0%B0%D0%BB%D0%BA%D0%B0&amp;diff=539"/>
		<updated>2026-04-29T11:39:59Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Noun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Russian==&lt;br /&gt;
&lt;br /&gt;
=== Etymology ===&lt;br /&gt;
&lt;br /&gt;
From [https://en.wiktionary.org/wiki/качать#Russian кача́ть] (to rock, to swing) + [https://en.wiktionary.org/wiki/-лка#Russian -лка].&lt;br /&gt;
&lt;br /&gt;
=== Katakana Transliteration Pronunciation ===&lt;br /&gt;
&lt;br /&gt;
: カチャルカ&lt;br /&gt;
&lt;br /&gt;
=== Noun ===&lt;br /&gt;
[https://en.wiktionary.org/wiki/качалка#Russian кача́лка] (kachálka) f inan (genitive [https://en.wiktionary.org/wiki/качалки#Russian кача́лки], nominative plural [https://en.wiktionary.org/wiki/качалки#Russian кача́лки], genitive plural [https://en.wiktionary.org/wiki/качалок#Russian кача́лок])&lt;br /&gt;
&lt;br /&gt;
# [https://en.wiktionary.org/wiki/seesaw seesaw], [https://en.wiktionary.org/wiki/teeter-totter teeter-totter]&lt;br /&gt;
# [https://en.wiktionary.org/wiki/rocking_chair rocking chair], [https://en.wiktionary.org/wiki/rocker rocker]&lt;br /&gt;
# (mining) [https://en.wiktionary.org/wiki/jack_pump jack pump]&lt;br /&gt;
# (colloquial) [https://en.wiktionary.org/wiki/gym gym], [https://en.wiktionary.org/wiki/workout_room workout room]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
	<entry>
		<id>https://mordictionary.org/index.php?title=%D0%9A%D0%B0%D1%87%D0%B0%D0%BB%D0%BA%D0%B0&amp;diff=538</id>
		<title>Качалка</title>
		<link rel="alternate" type="text/html" href="https://mordictionary.org/index.php?title=%D0%9A%D0%B0%D1%87%D0%B0%D0%BB%D0%BA%D0%B0&amp;diff=538"/>
		<updated>2026-04-29T11:38:42Z</updated>

		<summary type="html">&lt;p&gt;MorMythos: /* Noun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Russian==&lt;br /&gt;
&lt;br /&gt;
=== Etymology ===&lt;br /&gt;
&lt;br /&gt;
From [https://en.wiktionary.org/wiki/качать#Russian кача́ть] (to rock, to swing) + [https://en.wiktionary.org/wiki/-лка#Russian -лка].&lt;br /&gt;
&lt;br /&gt;
=== Katakana Transliteration Pronunciation ===&lt;br /&gt;
&lt;br /&gt;
: カチャルカ&lt;br /&gt;
&lt;br /&gt;
=== Noun ===&lt;br /&gt;
[https://en.wiktionary.org/wiki/качалка#Russian кача́лка] • (kachálka) f inan (genitive [https://en.wiktionary.org/wiki/качалки#Russian кача́лки], nominative plural [https://en.wiktionary.org/wiki/качалки#Russian кача́лки], genitive plural [https://en.wiktionary.org/wiki/качалок#Russian кача́лок])&lt;br /&gt;
&lt;br /&gt;
[https://en.wiktionary.org/wiki/seesaw seesaw], [https://en.wiktionary.org/wiki/teeter-totter teeter-totter]&lt;br /&gt;
[https://en.wiktionary.org/wiki/rocking_chair rocking chair], [https://en.wiktionary.org/wiki/rocker rocker]&lt;br /&gt;
(mining) [https://en.wiktionary.org/wiki/jack_pump jack pump]&lt;br /&gt;
(colloquial) [https://en.wiktionary.org/wiki/gym gym], [https://en.wiktionary.org/wiki/workout_room workout room]&lt;/div&gt;</summary>
		<author><name>MorMythos</name></author>
	</entry>
</feed>