ボカロとマイクラが好きな、聴くブログ

ボカロとマイクラが好きな雑記ブログ

follow us in feedly

言語化の罠

昨夜はうまく言語化できないといいつつ、今度は言語化には罠があるぞ、的な物言いをつける。

感情を整理できないときに、安易にラベリングをする可能性があるってことか。

共感が重要だってときに、わざわざ言葉にすることで、共感の可能性を低く抑えることもあるわけで。

 

、、、おーい、言語化できてないぞー。

まあいいや。そのための読書だ。

follow us in feedly ** 注意 - Web Speech API非対応のブラウザでは音読できません */ (function () { if (!window.speechSynthesis) return; document.querySelectorAll('article').forEach(function (article) { var button = document.createElement('button'); button.type = 'button'; button.className = 'btn'; button.textContent = '音読する'; button.style = 'float: right'; article.querySelector('header').appendChild(button); button.addEventListener('click', function () { var synth = window.speechSynthesis; var body = article.querySelector('.entry-content').textContent; var utter = new SpeechSynthesisUtterance(body); synth.speak(utter); }); }); })();