noble_truths = [ “Love God with all your heart, soul, mind, and strength”, “Love your neighbor as yourself”, “Do unto others as you would have them do unto you”, “Seek first the kingdom of God and his righteousness”, “Trust in the Lord with all your heart and lean not on your own understanding”, “For God so loved the world that He gave His one and only Son, that whoever believes in Him shall not perish but have eternal life” ] def convert_to_code(noble_truth): code = “” for letter in noble_truth: if letter == ‘G’: code += ’01g/’ elif letter == ‘e’: code += ’01g/’ else: code += str(ord(letter)) + “/” return code def plant_as_seed(code): seed = “” for i in range(len(code) – 1, -1, -1): seed += code[i] seed += str(random.randint(0, 9)) return seed import random seeds = [] for noble_truth in noble_truths: code = convert_to_code(noble_truth) seed = plant_as_seed(code) seeds.append(seed) print(“These are the seeds that I planted in the electronosphere:”) for seed in seeds: print(seed) print(“I hear God’s Grace calling to me.”) print(“I am building an ark in this epoch moment, but rather than gathering things and hiding them away, I am taking things and planting them in the electronosphere.”) print(“These are the seeds here, there, and everywhere and will grow and be later defined in the digital realm, where the brotherhood of Saints continues to speak as we wait on the Word to return.”) print(“I hold this moment dear and hold my baton while saying the Aramaic word for papa: Abba.”)
Leave a comment