These are the edits that I made and sent to him via email. I tried to attach the file to this post, but the forum won’t allow it.
Summary
#Intention Repeater created by Thomas Sweet
#Updated 7/12/2020
#Repeats intention a million or more times per second
#Depending on the intensity chosen and the hardware capability.
#Python script. Run using: python3 intention_repeater.py
#Licensed under GNU General Public License v3.0
#https://choosealicense.com/licenses/gpl-3.0/import time
from math import ceil, log10
import sysdef human_format(num):
num = float(’{:.3g}’.format(num))
magnitude = 0
while abs(num) >= 1000:
magnitude += 1
num /= 1000.0
return ‘{}{}’.format(’{:f}’.format(num).rstrip(‘0’).rstrip(’.’), [’’, ‘K’, ‘M’, ‘B’, ‘T’, ‘Q’][magnitude])print(“Intention Repeater v4.0 software created by Thomas Sweet.\n”)
print(“This software comes with no guarantees or warranty of any kind.\n”)list_write = []
intention = ‘’
intentionval = ‘’
coherence = ‘’
clear_interference = ‘’while intention == ‘’:
intention = input("What is your intent?: ")while coherence != ‘Y’ and coherence != ‘N’:
coherence = str.upper(input("Gut/Heart/Mind Coherence? [Stronger, but can be exhausting] (Y/N): "))while clear_interference != ‘Y’ and clear_interference != ‘N’:
clear_interference = str.upper(input("Clear Interference? [More effective, but can be exhausting] (Y/N): "))intensity = ‘’
#We want to cancel negative intentions. Regulate energy so that it doesn’t get overpowering.
#Choose the most effective and efficient path. And conclude with it is done on each iteration.
process_energy_statement = ‘BY GRACE. IN COOPERATION WITH FATHER GOD AND MOTHER GODDESS AND SOURCE. PURE ADAMANTINE PARTICLES OF LOVE/LIGHT. IN THE HIGHEST AND GREATEST GOOD OF ALL. REQUESTING AID FROM ALL BENEVOLENT BEINGS WHO ARE WILLING TO ASSIST. METATRON’‘S CUBE. 0010110. GREAT CENTRAL SUN. SOL. EARTH’‘S CRYSTAL GRID. CREATE STABILIZATION FIELD. CREATE ZONE OF MANIFESTATION. MANIFESTATION DIODE ARRAYS. BUBBLES. USE EVERY AVAILABLE RESOURCE (RESPECTING FREE WILL). MANIFEST ASAP AT HIGHEST DENSITY POSSIBLE INTO BEST DENSTIY FOR USER. CREATE STRUCTURE. 432HZ MANIFESTATION. CANCEL NEGATIVE INTENTIONS. PURIFY THE ENERGY. CLEAR THE BLOCKAGES. REGULATE AND BALANCE THE ENERGY. USE THE MOST EFFECTIVE PATH IN THE MOST EFFICIENT WAY. INTEGRATE THE ENERGY. PROCESS THE CHANGES. GROUNDED TO GAIA, CONNECTED TO SOURCE, INTEGRATING BOTH WITHIN THE SACRED HEART. IT IS DONE. SO SHALL IT BE. NOW RETURN A PORTION OF THE LOVE/LIGHT RECEIVED AND ACTIVATED BACK INTO THE HIGHER REALMS OF CREATION. I LOVE YOU AND THANK YOU.’intentionval += intention + ’ ’ + process_energy_statement
if coherence == ‘Y’:
intentionval += ’ GUT/HEART/MIND COHERENCE WITH REPEATER.’if clear_interference == ‘Y’:
intentionval += ’ CLEAR INTERFERENCE.’benchmark = 0
start_time = float(time.time())#See how many iterations the processor can run in one second.
while float(time.time()) - start_time < 1.0:
benchmark += 1
list_write.append(intentionval)list_write.clear()
#Determine how many 0’s the benchmark number would equate to. Like 100k or a million or so iterations in a second.
#Add 1 for any partial million or 100k left over.
maxintensitylevel = ceil(log10(benchmark)) + 1while intensity is not int:
try:
intensity = int(input(“Intensity [1-” + str(maxintensitylevel) + "]: "))
break
except ValueError:
print(“Please enter a valid intensity value.”)if intensity > maxintensitylevel:
intensity = maxintensitylevelif intensity < 1:
intensity = 1if intensity == maxintensitylevel:
maxintensity = benchmark
else:
maxintensity = 10**(intensity-1)num_writes = 0
print(“Press CTRL-C to stop running.\n”)
#Calculate how long it takes to run the number of iterations for level of intensity chosen.
start_time = float(time.time())
for d in range(maxintensity):
list_write.append(intentionval)#If run the last second before midnight, benchmark again.
if float(time.time() - start_time) < 0:
list_write.clear()
for d in range(maxintensity):
list_write.append(intentionval)sleeptime = 1.0 - float(time.time() - start_time)
list_write.clear()
#We write to memory a certain number of times to repeat the intention
try:
while True:
for d in range(maxintensity):
list_write.append(intentionval)
num_writes += 1
if num_writes % maxintensity == 0:
sys.stdout.write(’ ’ + time.strftime(’%H:%M:%S’, time.gmtime(int(num_writes/maxintensity))) + " [" + human_format(num_writes) + "] " + intention + ’ \r’)
sys.stdout.flush()
list_write.clear()
if sleeptime > 0:
time.sleep(sleeptime)except KeyboardInterrupt:
passprint("\nIntention repeated " + human_format(num_writes) + " times. IT IS DONE.")
list_write.clear()