-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathintention_repeater_4.0.py
123 lines (92 loc) · 4.39 KB
/
intention_repeater_4.0.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#Intention Repeater created by Thomas Sweet
#Updated 8/6/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 sys
def 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("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. INTELLIGENT INFINITY. PURE PERFECTLY BALANCED LOVE/LIGHT. ANU EUPHORIA. METATRON''S CUBE. 0010110. GREAT CENTRAL SUN. SIRIUS A. 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 THE ENERGY. BALANCE THE ENERGY. USE THE MOST EFFICIENT PATH. INTEGRATE THE ENERGY. PROCESS THE CHANGES. KEEP USER GROUNDED AND INTEGRATED. IT IS DONE. SO MOTE IT BE. THANK YOU.'
intentionval += intention + ' ' + process_energy_statement
if coherence == 'Y':
intentionval += ' 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)) + 1
while 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 = maxintensitylevel
if intensity < 1:
intensity = 1
if 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:
pass
print("\nIntention repeated " + human_format(num_writes) + " times. IT IS DONE.")
list_write.clear()