Sponsored by EasyDNS. https://easyDNS.com/NotOnRecord
📣➡Use promo code: notonrecord
Watch or Listen to new episodes of Not On Record Weekly on Not On Record, Sunday nights at 8 PM.
👉 Listen on Spotify: https://open.spotify.com/show/4F2ssnX7ktfGH8OzH4QsuX
👉 X/Twitter: https://x.com/NotOnRecord
👉 Substack: https://NotOnRecord.Substack.com
👉 Youtube: https://www.youtube.com/NotOnRecord
def process_information(new_fact):
belief = "I am already correct"
if new_fact.supports(belief):
accept(new_fact)
share_immediately(new_fact)
say("Interesting. Exactly what I thought." )
elif new_fact.challenges(belief):
reject(new_fact)
question_the_source(new_fact)
say("That sounds suspicious." )
else:
ignore(new_fact)
say("Not relevant." )
return belief