Editing
Propaganda and Persuasion
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Echo Chamber' (The Bias Loop):''' <syntaxhighlight lang="python"> def update_belief(current_belief, information_received): """ Shows how Confirmation Bias protects a belief. """ # If the info matches my belief, I believe it MORE. # If it doesn't, I ignore it or call it 'Fake News'. if information_received['lean'] == current_belief['lean']: current_belief['strength'] += 0.2 return "ACCEPTED: This confirms what I already knew." else: current_belief['strength'] -= 0.05 # Only a small impact return "REJECTED: This is biased/unreliable information." # User is 'Pro-Choice'. Gets a 'Pro-Choice' news bit. my_mind = {'lean': 'Left', 'strength': 0.5} news = {'text': 'Study shows X is good', 'lean': 'Left'} print(update_belief(my_mind, news)) # This logic is why 'Facts' rarely change people's minds # once they are part of an echo chamber. </syntaxhighlight> ; Propaganda Landmarks : '''The Office of War Information (WWII)''' β The birth of modern "Mass Persuasion" through posters (We Can Do It!) and film. : '''Edward Bernays (Propaganda)''' β The nephew of Freud who applied "Psychology" to "Public Relations," convincing women to smoke by calling cigarettes "Torches of Freedom." : '''The Cambridge Analytica Scandal''' β Showing how Facebook data was used to "Profile" and "Manipulate" voters during major elections. : '''Deepfakes in Politics''' β The current frontier where video and audio are faked to make it seem like a leader said something they didn't. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information