-
Notifications
You must be signed in to change notification settings - Fork 0
/
appendix.c.xhtml
executable file
·2526 lines (2472 loc) · 125 KB
/
appendix.c.xhtml
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<!-- <!DOCTYPE html> -->
<!-- <html lang="en"> -->
<head>
<title>The Principles of the Trinary Universe: Appendix C Child Trip to Moon</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Jeffrey Scott Flesher" />
<meta name="created" content="1961-01-14T18:32:33.366699936" />
<meta name="changedby" content="Jeffrey Scott Flesher" />
<meta name="changed" content="2020-01-14T18:32:57.366666666" />
<meta name="description" content="Author: Jeffrey Scott Flesher, Principles of Light Wizzard or Wizards like Sir Isaac Newton and Nikola Tesla" />
<meta name="keywords" content="Light,Wizzard,Wizard,Newton,Tesla,Franklin,God,Jesus,Bar/Abbas,Darkness,Trinary,Universe,Sanctuary,Physics,Sun,Step,Jeffrey Scott Flesher" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@TheLightWizzard" />
<meta name="twitter:creator" content="@TheLightWizzard" />
<meta name="twitter:title" content="The Principles of the Trinary Universe: Appendix C Child Trip to Moon" />
<meta name="twitter:description" content="Author: Jeffrey Scott Flesher, Principles of Light Wizzard or Wizards like Sir Isaac Newton and Nikola Tesla" />
<meta name="twitter:image" content="images/cover.jpg" />
<link rel="shortcut icon" type="image/ico" href="favicon.ico" />
<!-- *** Put all js files inside comment tag when running kindlegen to get rid of warnings
*** -->
<link rel="stylesheet" href="1doc2rule.min.css" />
<!-- <script async="async" src="1doc2rule.min.js"></script> -->
</head>
<body>
<!-- ************* CONTAINER ********************************************** -->
<div class="container">
<!-- ************* BEGIN_TITLE_PAGE_COPYRIGHT ***************************** -->
<div class="noprint">
<span class="show_web_page_only"><span class="align_center"><span id="google_translate_element" class="google_translate_element"></span></span></span>
<span class="bigcenter"><cite>The Principles of the Trinary Universe</cite></span>
<span class="bignboldncenter">Appendix C: A Child plans a Trip to the Moon.</span>
<span class="small_text_line_center"><span class="center_italic">C</span>®<span class="center_italic">pyRight</span> & <span class="center_italic">C</span>©<span class="center_italic">pyLeft</span><br />by</span>
<span class="a_signature_large_center">Jeffrey Scott Flesher</span>
<span class="author_title">“Medically Retired United States Air Force Staff Sergeant”</span>
<span class="center_small">Last Update: <span class="text_mono ">14 January 2020</span></span>
<span class="center_small">
<a href="http://LightWizzard.com/books/trinary.universe/the.principles.of.the.trinary.universe.xhtml" class="blank_target_link">http://LightWizzard.com/books/trinary.universe/the.principles.of.the.trinary.universe.html</a>
</span>
<div class="a_line_show_break_html"></div><span class="a_blank_line"> </span>
</div>
<!-- ************* END_TITLE_PAGE_COPYRIGHT ******************************* -->
<!-- ************* BEGIN_APPENDIX_C *************************************** -->
<div class="page_content">
<h3 id="appendix_c" class="a_header">Appendix C:<br />A Child plans a Trip to the Moon. </h3>
<p class="text_top">
When I was a child I designed a Rocket to go to the Moon,
this was back in 1966, so it was a popular theme of the day.
When I showed my design to Adults, they would just laugh,
you are going to use Water as Fuel,
it will put out the Fire!
Adults are not very Intelligent,
that is one thing I learned growing up,
they would always tell you that when you grow up you will understand it,
yet when I grew up, all I understood was how Stupid Adults are.
</p>
<p class="text_indent">
My concept for Fuel for a Rocket was Water, not just any water,
but the water that was separated into its elements, which are Oxygen and Hydrogen,
then you burn these two together and recover the Water that I will use as Fuel.
My design had a very large Water Tank,
it was kept above freezing using Electromagnetic Induction coils,
and at the bottom being Gravity feed,
was a Resonance Chamber, much like the one at the Great Pyramid,
only made out of other materials,
it used Lightning to separate the Oxygen and Hydrogen,
it would then be burned in an Electromagnetic Atomic Acceleration chamber that created Trust,
much like a modern-day Jet Engine of that time,
the Oxygen and Hydrogen burned and created a superheated toroidal shaped airflow,
then it went into a magnetic focusing Chamber,
that would be used much like the Atomic Accelerator that Nikola Tesla Invented,
not sure if it would actually work,
but the Adults did not care to try to understand,
they never do, and showing other Children was a waste of time,
they do not understand anything,
which is why they are Brainwashed into believing that Science Fiction is Science.
</p>
<p class="text_indent">
My concept also took into account the need for Gravity and Electromagnetic Shielding,
which I planned on using a Trinary Engine as soon as I designed a way to make one,
still working on that one, see Appendix B.
Without Electromagnetic Shielding also known a Magnetosphere,
Life could not exist for long,
even in low orbit around the Earth,
where Gravity is low,
but much higher than it will be once you leave the Earths Magnetosphere,
which is around 666 miles from Earths surface,
this is not a number I made up,
its data came from Air Force Missions,
and is near the point that you get very little protection outside this mile marker,
and also near the farthest recorded distance that the Air Force could safely make it,
the pilot was so disoriented from the Solar Wind Radiation,
that all he could see was Radiation saturating his vision with Light so bright they could not see,
so the mission was aborted,
animals doing this same mission were not so lucky,
and long term low Earth studies showed that you start losing your muscles immediately,
and after a year you could not walk on Earth,
any longer and you might die,
as it gets harder to breathe,
and exercises only increases the effect,
and Spinning the Capsule only make matters worse,
and does not simulate Gravity,
in fact: it does not even Generate any,
nor do ropes, cables, and pulley systems work in low gravity,
so without a Magnetosphere, humans will never live in space,
not sure anyone could survive a trip around the Moon without Electromagnetic Shielding,
test dummies did not,
and special aircraft designed to be hit by Micrometeorites and collect them as samples,
proved that Manned Space Flight is not possible without Shielding,
and normal materials like Armor Plating,
can not withstand hits at the speeds recorded, which reached Hyper-velocities,
averaging from 6,666 to 66,666 miles an hour,
which is due to the fact that our Planet is traveling at that top speed,
and the lower speed is due to the speed of the Solar Winds,
these are the accepted speeds even in Mainstream Science,
see <a class="toc_link" href="http://LightWizzard.com/books/trinary.universe/webforms.xhtml#table_4_07">Table 4.7: Calculate Celestial Body Rotational and Orbital Speeds,</a>
and this is why you can not simply fly to the Moon,
this is life in the fast lane,
this planet is traveling at a very high rate of speed,
unmanned aircraft do not have to deal with those speeds,
but man aircraft do,
and real Scientist have to acknowledge these facts and limitations,
before committing those Dreams to Video,
and continuing to lie about Reality.
</p>
<p class="text_indent">
By the time I was 9, it was clear that it would take too much water to get to any planet except maybe the Moon,
but I knew that the Spacecraft needed Water for the Astronauts to Drink and for Oxygen to breath,
and you can burn to Oxygen and Hydrogen to make Heat and water to drink,
even Electricity, so you can charge your Batteries,
so it all comes down to what form of Atomic Structure is best to store for long term Space travel,
and Water seemed safer to transport then Oxygen,
and you can find a use for Hydrogen,
but that meant I needed a new propulsion system,
so my Trinary Engine came to mind,
I already had the concept for it since I was 6,
so it was just a matter of figuring out how to tap into its Energy,
and since it has Gravity, it would be easy enough to use it to drive the Spacecraft,
plus it could keep the Astronauts alive,
unlike the Apollo Missions that would have Killed them around 666 Miles from Earth,
a number that is a Calculation for where the Cosmic Electromagnetic Energy Fields Collapses,
keep in mind there are other types of Fields besides what I call Cosmic,
which just means Electromagnetic Radiation like Gama and X-Rays,
so other stronger forces are in another range of Electromagnetic Spectra,
and that field collapses much closer to earth,
around 66 miles above Earth, in fact, these numbers are actually calculations revere engineered,
I found these numbers by trial and error looking for them using Satellite Data,
and what we know from the Space Missions,
it has to do with a phenomenon called “The Van Allen Belt”,
so what we know as Facts is that no one has made it as far as 666 Miles that is Public Knowledge,
besides the Apollo Moon Simulations when NASA Simulated sending Men to the Moon using Movie Sets,
this was more to get other countries to try to outdo us, so we called it a Race to the Moon,
but some other Dog made it to space before Man, even a Monkey beat Man into Space,
and the United States did not like getting beaten by a Russian Dog,
so Man was not so special to make it into Space, my kind made it first,
since everyone on this Planet is already on a Spacecraft,
so even the Spacecraft that take off from this one, is not that Special,
it looks like someone took one to Mars to build man-made structures on it,
so besides the Space Simulations, no one has ever been outside the Van Allen Belt and Survived,
not a Dog, Monkey or even a Human,
other than unmanned (including Dog, Monkey or other life) Probes that were sent to the Moon,
this information will be available for an FOIA Release after Buzz dies,
Sorry to Kill the Buzz:
but NASA already let the Cat out of the Bag when they announced that there was still a snag in going to Mars...
We cannot send Astronauts further out into Space then 666 Miles, not the actual figure they gave,
because they never made it that far, but they know for a fact it can not be done without better shielding,
those missions did take us into Space in the Van Allan Belt,
and there was a lot to learn from those Missions,
for now, we know for a fact that Buzz would not have made it 666 miles from Earth in the Apollo Spacecraft,
but we will pretend he did for now,
I have no reason to doubt he went to space,
as a child, I could see the Apollo orbiting Earth,
as did everyone else,
you could not hide Satellites now,
I can still see them, and I am going blind,
since we still cannot do that to this date according to the United States Air Force that pushed the Limits,
as we pretty much know that if a Meteor makes it to 66 Miles above Earth,
it will more than Likely enter its Atmosphere,
and we know for a fact,
you would be a vegetable after a 5-year tour in Space without Gravity,
so I always keep my eyes open for Ball Lightning,
but I was researching everything I could find out about it at the time,
but my mind understood that it has a lot of Gravitational, Kinetic, Thermal, and Electromagnetic Energy,
so there needs to be the technology that can tap off each of these Energies and Transform them into what we need,
and for the most part, there are technologies that exist today that can harness some of this Energy.
</p>
<p class="text_indent">
Growing up I had no idea what was real and what was fake,
I also knew that Scientist or people in general lie about things to get funding,
so I could not trust any research I did not do myself,
but at some point, I had to hope that at least some of NASA's work was real,
after the Apollo mission success,
the Government went on to fake Star Wars,
not the Movie,
but another Government scam to fake Russia into believing we were more advanced,
by lying to its own Citizens that are owned by the Banks that Authorized this deception,
to try to break the Russian Banks,
and they succeed,
so this Scam was a Success,
and for some reason, they have not revealed the Scam,
despite overseas media pressure,
and you have to remember that if the part about them going into Space is real,
and I have no idea one way or the other,
in fact, they might have gone to the Moon for all I know,
and that is why I can not go by what I know,
I can only go by what I can prove,
and I can prove something when up,
and something came down,
if anyone was in that something,
I have no idea,
but I do believe we sent Probes,
and other remote-controlled equipment to the Moon,
but having been one waiting for Satellite images from a Satellite mapping the Moon,
and having it crash just short of the distance required to map that area,
and that could not have been an accident,
considering that they only had a few more percentages to go,
I heard one estimate that it was 99.999% complete,
and others as low as 96%,
meaning that they waited to map that area last on purpose,
and crashed it on purpose for the same reason,
they were never allowed to map that area,
so we would know the truth,
and that is called a Cover-up,
so it is no surprise to me that last section of the map was added,
where this data came from no one knows,
but it matches what NASA wants it too,
but if it is Real I have no idea,
because I do not trust the Federal Government,
because I work for them too,
and they lied to me about many things,
but I know it is all a Game,
and people get bored,
and no one likes to admit they lied,
and knowing that the Constitution is Suspended,
means they are all a bunch of liars, to begin with,
and if you will lie about that,
why stop at the Moon.
So I will not assume that any of what they told us is true...
</p>
<p class="text_indent">
Looking at the data from the Voyager Mission,
I knew that there is proof that the Core of the Planets was, in fact, a Trinary Energy,
since it is the only explanation,
so I hope that someday Science will revisit that Mission knowing this information,
so that they can understand now what we learned from the Apollo Missions up to the Voyager Missions,
will truly allow us to understand the Sacrifice Men like Buzz made for the advancement in Science
Buzz should always be remembered as a Hero, he will always be mine,
without his Sacrifice, the Space Program may have died,
so Buzz was paving the way for future space exploration,
and thanks to him, I knew I was Right about People,
they can believe what they are told without knowing all the Facts,
for one, the Apollo Missions did in fact land on the Moon,
robots were used to set up scientific experiments,
LASER reflectors and other scientific equipment was left there,
but the Moon was mapped out 99.999%, but the Satellite had an accident,
and was ordered to crash-land into the surface of the Moon,
so no one will ever know for sure if there is a Flag,
I imagine there is, but will never know for sure,
because that was the footage that is missing...
So I learned that I cannot trust Mainstream to report the real Truth about Science,
and as a child, I knew that no one would ever except God into Science,
yet I also knew that I could not allow this to give up on my Dreams,
and those Dreams were about Trinary Engines,
so as an Adult I knew I had the proof I needed that the Trinary Engines existed,
so it was all about finding a way to catch Ball Lightning and Grow a Trinary Engine,
then I could use it to power my Spacecraft,
while in reality, it is,
the Earth has one, and this is my Spacecraft,
so Dreams do come true,
and reality sinks in that I can not build a better Spaceship then the Planet Earth,
and where can I go that it will not bring me?
</p>
<p class="text_small">
Growing up in the 1960's, most people blame the Insanity of believing in Einstein's Theory on LSD,
so as a teenager I had to try it out, I was not allowed to experiment with it,
my Father always told me to never experiment with any drugs,
so I never did, not until a decade after he died anyway,
then I started to experiment with Cannabis,
but what I learned about LSD was that we already have that Capability,
our Brains have both Cannabis and LSD Receptors,
it is just not as enhanced for normal people,
my guess is what makes Autism different:
is in the way an Autistic Brain has more receptors open to allow Cannabis or LSD to bind to in our Brains,
making our brains Light up more with electronic imaging,
so I do not need to take LSD to feel the effects of it,
all I have to do is remember the trip and I can take that trip again,
because of the way I store Memories, I can retrieve the feelings as well,
and in as much detail, which is what makes my PTSD attacks seem Real,
it is because to me they are,
I realized that I could learn to think anyway I wanted,
so one day in the summer of 1976 I sat on top of a Mountain in Corona California,
and took some LSD, not the stuff you find on the Streets,
but some that were made in a Lab for Military Testing,
it was code-named “BZ”,
and the reason I took it was because I wanted to be alone,
so I found a place I could isolate myself from the rest of the World,
it was warm that night, and clear, I could see all the Stars,
but I could not see past the Stars,
and soon all the Stars started spinning in Circles,
and the Circles became Circles inside other Circles,
and this was really starting to make me feel uncomfortable,
so then I closed my Eyes and Opened my Minds I,
and I saw myself sitting on top of the World,
looking out into Space we are flying into,
and then I realized that the Sun is plowing through space,
my calculations at the time were from 333,333 to 666,666 miles an hour,
the speed varies depending on where we are located in the Helix as we orbit the Galaxy,
the need for speed is to get through the Galaxies Disk,
not enough speed and you get stuck there forever,
and get hit by everything the tries to plow its way through it,
all lifeforms on the planet die during this time period,
and it is why all Planets speed up as they get close to going through the disk,
the Disk has a very dense Mass to it,
so it has Gravity,
and the closer we get to it,
the more Gravity we feel,
thus the faster we go,
so it is the Disk that generates the Energy to speed us around the Galaxy,
and evolution starts all over,
and we Human species are born again,
and have to learn about how the Universe works all over again,
right now we are traveling about 477,354 miles an hour,
so this thought occurred to me that we are traveling less than <sup>1</sup>/<sub>1000</sub> the Speed of Light at maximum,
so in terms of energy, the Sun is putting out enough energy that most people view it as being on Fire,
yet the Sun's speed is only on average 477,354,
and that is a long way from the Speed of Light,
so it is not putting out as much energy as it can,
if I am right and the Sun does have this Range, since this was my idea and not Newton's,
and I could be wrong, it was not a Theory, it was based on Logic,
but I do have a long way to go before I prove it,
it comes down to figuring out Speed in relationship to a helix gravity well,
so I have to determine its complete range of Frequencies and Wavelengths,
so I realized its Energy has a Resonant Frequency that it will catch on Fire,
so there is a maximum speed that any Atom can travel at before catching on Fire,
and then I saw a Shooting Star,
and thought, wow, I really had to get high to figure this out,
if I had not, I would have never had that thought,
but that is how Children are, taking Drugs to get high for Fun,
and then figuring out the Nature of the Universe just because one thought leads to the next,
so if Children could design Spacecraft, they would get high to do so,
but it was then I knew Einstein was wrong, not so much that he was wrong,
but his Theory, actually he admitted his theory was wrong, so he was right,
and that confused me, how high do you have to get to believe someone theories when they do not,
and it was then I realize that they must have taken a different type of LSD,
a type that makes Yew Stupid,
but for the Most Part, you do not need to take Drugs to figure that out,
I just needed to open my Mind,
if Light is Static in the Universe it does not move,
we do, so as we move closer to the speed of Light, time does not change,
Light just comes at us slower,
and we can not notice this difference in speed,
so visualize you are the arms on a clock,
if the clock is running up to the speed of Light,
to those looking at the clock, will see it spin faster,
but from the viewpoint of the Arm, the faster you go,
the fewer time intervals you will see pass given the same amount of view time as those view the clock,
for example, if it took 60-time intervals to pass in one hour,
and from the viewpoint of someone looking at the clock, we will call them the Observer,
and the person on the Arm of the Clock we will call the Time Traveler,
because he is traveling with the Arm as it speeds up to the Speed of Light,
so to the Observer, the clock will move so fast they cannot count how fast its moving,
but to the Time Traveler, the time intervals would double if your speed doubled,
but your perception of it would be that time is moving slower,
because now you have 120-time intervals during the same period as the Observer has 60,
so in real-time, you have more time, which is why Einstein viewed it as time dilation,
but this assumes that your mind can perceive the passage of time differently and compensate,
as if we could manage to think a thought and then start another, then another,
so you have multiple thoughts going on in your head at one time,
so I found that I had many threads that slowed down my thought process,
like events that trigger PTSD attacks,
because the more thoughts you will have the more of those type of thoughts you will think about,
and since the only way to speed up your thought process is to think in parallel,
since our brains work in both Serial and Parallel modes,
if we are to perceive time at the same rate regardless of speed,
we have to think faster, and that requires more threads,
since we actually cannot increase our brains Frequency by enough to help us to think faster,
in fact, it looks like the slower our Frequency is, the faster we can think,
I can confirm that using Neurofeedback,
so I came to the conclusion that it could be done,
so I tried it, and I built this test on my mind without anyone around to help me if I got lost in time,
that is what children do when they take drugs alone, they are all alone,
so I started by asking myself how do I do multiple thoughts at the same time,
the first thing is you have to shut off that Little Voice in your Head,
it only runs in Serial Mode and if it makes any noise it will crash the whole system,
and this is how I thought up till 1974, just two years earlier,
before I started using that little voice to talk to myself, which is crazy I know,
I heard it in my head like a movie or audio recording, but I never used it to talk,
and since then I was trying to get back there, but could not stop that little voice,
so that is why I came here this night, to be alone, to shut that Little Voice up,
so I could be alone,
I thought getting away from everyone would help that process,
so here I am trying to get that little voice to shut up,
and next thing I know the Sun is coming up,
so time speed up, or my perception of it speed up,
but what brought me back to real-time, was that I said wow when I saw the Sun,
and that caused me to use that little voice in my head,
and then all those threads in my head crashed,
it felt like the Earth had stopped, and I was still moving,
like I need to grab the ground when it happened,
this feeling was irritating to say the lease,
but I knew the facts, if I moved faster it would not make me think faster or age slower,
because this thought that the speed of the Observer and the speed of the Time Traveler are different is insane,
if we were talking on a phone, there would be a time delay for the electrons to travel that far,
but there would be no time compression,
just because Time Travel is traveling faster, does not give them superhuman strength,
in fact, if I ran down this Mountain at the Speed of Light I would just crash and burn at the bottom but be no younger or wiser,
this would mean that if I ran down this mountain at super-fast speeds I could think faster,
think about the Theory of General Relativity,
as the Time Traveler gets closer to the speed of Light,
they will grow older slower, and the Observer will grow older at a normal rate,
over long distances, this age difference would be huge,
so it means that the Time Traveler is able to think faster,
since they will have way more time to think in the same time period as the observer,
that sounds crazy when you tell the story this way,
but that is what Einstein said,
and why he later denounced in stating that it caused Paradoxes,
that only God could solve.
</p>
<p class="text_indent">
As I sat there looking at the sky change colors, I realized I had many thoughts going,
and not one of them in that Little Voice Space,
that is what I call that place I go when I have to use that Little Voice,
and I just stopped using it for the first time in over two years,
and it is still hard to do to this day,
if people interrupt me when I am thinking, it makes my whole world come crashing down around me,
I get so upset I want to die,
that little voice tells me that everyone hates me,
because they do not understand me,
so everyone does things to make me want to kill myself,
because that is how Depression and Anxiety work,
because all those thoughts I was holding back, like triggers for PTSD,
those all came flooding back into that Little Voice Space in my Head,
so I try to tell people to not interrupt my train of thought,
once I have to engage my Little Voice I have to go back to that Little Voice Space,
and that was not how I grew up, so something changed,
this is not the time or place in this book to talk about this subject in detail,
but it does relate to me designing Spacecraft,
you cannot use that Little Voice to design things with,
its way too slow, you have use multiple threads,
I know that when I grew up, no one ever told me how to think,
so I never used that Little Voice to speak,
but when I was 13, a School Teacher taught me that:
like I needed to know how to do that,
that was a horrifying experience,
you should never allow your children to use that Little Voice,
some Autistic people can not talk, it is because they do not know how to use that Little Voice,
and cannot talk without it, but that was not my case,
so this thought leads me to view what Einstein said like this...
</p>
<p class="text_indent">
The Experiment: You do not have to take Drugs to imagine that you can travel at the Speed of Light,
you are doing it right now, this is how you prove it,
take a flashlight and turn it on, now we have our imaginary Spaceship we will get in,
and chase down this Light that came out of the Flashlight,
as we near the speed of Light, we can see the Light,
the time that we left Earth and the Time it took us to get this far,
is measured in real-time, so it is the same time that people on Earth still use,
and if I had a phone that worked in real-time regardless of how long it would take Electricity to travel that distance,
you would know that the two people can still talk,
so there is no time dilation,
so as you reach the speed of Light, the Flashlight can actually catch up to the Light,
this could not happen in reality, because you would have to travel faster than the Light to catch up with it,
but you understand the principle, once you reach the Speed of Light you are Light,
and time did not change,
the person in the Spacecraft did not age slower than the person on Earth,
and more to the point is that in Reality,
all the Material the Spacecraft is made out of, would not be able to accelerate to the Speed of Light,
because it would become Light,
because it is Frequency times Wavelength would equal the Speed of Light, so it would be Light,
and that is true of us right now,
proving we are already traveling at the Speed of Light,
just in a Spectrum, we can see,
so Time Travel will not make you think faster,
but LSD or Cannabis will.
</p>
<p class="text_indent">
So I knew that if I was to design a Spacecraft, I would design it like Earth,
it is the perfect spacecraft, so as I child,
this is how I would design a Spacecraft to go to the Moon,
I would catch Ball Lightning and grow a Trinary Engine,
then I would build the Spacecraft around the Trinary Engine,
I would tap off the Power I need to run all its systems,
and I would bring plenty of Water and Recycle everything,
I would not use Atomic Energy because it can kill me,
I would not use poison to kill insects and pest that get into my garden,
because it can kill me,
so I thought about this for a long time, and I know that I am right about it,
I can think multi-threaded, but not with that Little Voice,
and Drugs are not needed, our Brains can think better without it most of the time,
but not when you are in pain,
pain causes you to use that Little Voice to talk to the outside world your mind lives in,
but you know Earth is a very Intelligent design for a Spaceship,
and God designed it as a child,
and God was on Drugs because God Created all those Natural Drugs,
and LSD is a Natural Drug,
it is from Rye Ergot,
so Gods Law would include the usage of Drugs that God Made.
</p>
<p class="text_indent">
If Children designed Rockets that could take you to the Moon,
you would want to be taking LSD because this is going to be a Trip to remember,
and you can take a trip and never leave the Farm;
but Adults never take the time to listen to Children,
they would rather take Drugs and ignore the Children,
so growing up I hated people that did drugs,
especially Alcohol,
I say this as I take a hit off my Cartage Battery Pipe with Medical grade Cannabis in it,
so my life is complicated,
as was my childhood.
</p>
<p class="text_indent">
If you can imagine that the Earth's Trinary Engine is causing the Planet to Spin,
such that the core is not moving,
this is how a Generator works,
the Trinary Engine is like a Magnetic Core,
and the crust of the planet has iron in it that acts like the coils,
so the larger the planet,
the more electromagnetic energy it can create,
thus creating a larger magnetosphere,
the strength of the Magnetosphere varies with position of the Trinary Engine,
think of it as an Atom, as an Electron orbits it,
the Atom, for example, a Helium Atom has two Protons and two Neutrons,
as the Electron orbit is the Positive side of the Atom,
the Negative side attracts it,
it is like a dog chasing its tail,
its perpetual motion,
the Atom has 3 Rings of Power,
the Rings are Magnets Force Fields,
that the Electron follows,
the inner Rings have a lower Energy level,
and the outer Rings have a higher Energy level,
think of it as an Alternating Current or AC Waveform,
as the energy goes Positive,
it climbs to a more Positive Level,
then it starts its journey towards the Negative side,
as it crosses Ground,
this is where the Force Field Collapses,
so as it nears the Ground level,
its strength starts to lower,
to the point it collapses,
then as the Electron emerges from the other side,
its magnetic strength starts to build back up,
and that is what is happening right now,
we are close to going through this State Change at Ground Level,
so you can imagine that this Magnetic Force Field,
is creating an invisible net,
that is pulling the atmosphere around the world with it,
it is causing the Air to move with rest with the surface of the Planet,
and is only aided by Gravity,
because Gravity is the force that pulls everything to it,
we might think we are falling towards the planet,
but in reality, it is pulling us towards it,
so we actually do not fall down,
we are pulled down,
as such: it is creating the initial inertia that tends to hold us at rest with the planet,
as it spins at over a thousand miles an hour,
so it is this magnetic force field that is causing Gravity via its Mass,
so as the Magnetosphere collapse just before it reverses polarity,
gravity will weaken,
how much I have no way to calculate,
without a formula,
and that would involve the Math of a Helix for an AC waveform,
for example: if the pole shift moves at a rate of 6 degrees per hour,
it would take about 30 hours to fully shift,
and that is a long time to go without any protection,
so I hope that rate is low,
or maybe it is that massive kinetic energy of the Planet,
that keeps all the Atmosphere from leaking out into space,
and maybe Gravity plays a much larger role in this also,
but it is clear that this planet will lose it Magnetosphere when it collapses,
and it will have to build back up,
and that takes time,
so there other a lot of forces that are going on during this time,
our Atmosphere will take the largest hit,
how much will leak into space is unknown,
since I can only guess at the rate of change in the Magnetic Field,
I know that in the last iteration I figured this out,
but it is like Newton said,
there are some problems I can not figure out,
because I do not know the right question to ask,
and that question is how long will it take for the poles to fully reverse,
if I had to guess I would say they will take <sup>1</sup>/<sub>137</sub> of a cycle to complete,
this is based on how many receptors the Planet has,
because if I had to guess as to how long this planet could go without a Magnetosphere,
that was the number that I calculated,
it will take a lot longer for the permanent change to take place,
that would make 180 degree change in <sup>1</sup>/<sub>137</sub>,
in time if we divide one cycle by 24 we get an hour,
that is 60 minutes,
such that there are 1440 minutes in one cycle,
so it comes down to how much time is in each unit,
and since the total time does not change,
would give us 3288 intervals in 24 hours,
3288 / 1440 = 2 - <sup>17</sup>/<sub>60</sub> minutes,
so for just under 3 minutes,
the Earths Magnetosphere and Gravity will be at its weakest,
this is based on the time it would take for Electricity to start to flow,
through the Earth,
these are the Laws of Physics supersized,
meaning that <sup>1</sup>/<sub>137</sub> is the fine-structure constant,
it is a ratio that is dimensionless physical constant,
and has this numerical value in all systems of units,
and when applied to convert one cycle into 1 unit of dimensionless time,
that was a joke,
you get the minimal about of time it would take a Magnetic Force Field to be created on this scale,
scale it down to using a unit of time that it takes a Magnetic Force Field to be created around a small magnet,
and you will get the correct results proving this math is correct,
only scaled up to the size of Earth,
it is based on a ratio of the sphere,
and regardless of its strength,
its field strength is measured by the field or 3 Magnetic Force Field Rings,
it produces,
its strength is measured by its output of Electromagnetic Lines of Flux,
this is highest when electrons flow around the outer Rings,
but it is due to a build-up of excess electrons,
in the case of an Electromagnet,
these are pumped in with electricity,
in a generator, it is just a matter of the Magnets getting up to speed,
in this case, the Magnets are at speed,
but they are changing Polarity,
so we need to compute the minimal time it would take for that field to be created,
in this case, the earth has to make one cycle to complete one unit,
meaning that in the case of a Generator,
it would have to complete one cycle,
and for the Earth that would take 24 hours tops,
to get to maximum strength,
that may not seem like that long of time unless you have to hold your breath,
so the question is, how long do we have to hold our breath,
and that comes down to how fast Electromagnetic force can be created,
and it is created by excess electrons,
and that means there must be an excess,
which means you need to build up a charge,
and there is a formula for that,
and it all comes down to this <sup>1</sup>/<sub>137</sub> Ratio,
and if you turn a generator that amount,
you can measure a reading,
its called a particle field,
so if you know how long it takes to get around a magnet,
you can determine when you will get a reading when a Generator is turning,
just like a clock, it will tick on that interval,
Kepler called it the Harmony of the Worlds,
and this pattern is noted throughout physics,
it works because it calculates how long it takes to change the polarity of a hydrogen atom,
I had to pick an element to calculate, so I made it simple, so the 1 states for Atomic Number,
and you can calculate others, but there is a lot of Hydrogen on Planet Earth,
it is mostly water for one thing, but it is a common element,
and we are calculating state changes of all the Electrons that orbit around Elements,
Hydrogen is an abundant element on Earth,
so I need a ratio that I can use and relate it to time,
which is what I did just so I could take a guess at how long this might take,
in case I am the one who has to hold my breath,
and I can hold it that long now,
but when I am 99 years old,
well my Grandmother lived that long,
but I do not think I can hold my breath that long at that age,
and I want to tell people that yea this is going to happen,
and you might not notice it,
but every time I run the physics of what is about to happen,
it makes me think the Bible was right,
this is the end of civilization as we know it,
and using Helix Math on an AC waveform,
Newton calculated that in the year 2060,
Earth would reverse is polarity,
and I do not have to be intelligent to know that a Rocket in Space,
is the last place I would want to be when this happens,
because of all that obits Earths Magnetosphere,
will be in free fall for over this time period I calculated,
because it really will take one full cycle to rebuild that Force Field,
that is just the Laws of Physics,
and I can not speed up the Laws,
I can only compute how long things take,
and trust me it is a bold move to use this formula the way I did,
and try to justify how it works untested,
in the event it does work,
the coming Ice Age is a given,
since all the Earths Surface heat just leaked into outer space.
So the Earths Trinary Engine is about to change Polarity,
this means you should be able to document a decline in the Earths Magnetic Strength,
so launching Rockets into space to orbit around the Planet,
knowing this is about to happen,
sounds Stupid if Yew ask me,
because what is going to hold them up there when the Magnetosphere collapses,
or are People Stupid enough to think Gravity is caused by Centrifugal Force,
well, I will feel stupid if it turns out to be,
and so would Sir Isaac Newton,
and Tesla would be saying this can not be,
because even Einstein would have thought it was God,
but Science is only what we can prove,
and so far,
I have only set myself up for failure if Newton was wrong,
and Gravity is caused by Centrifugal Force,
because we know for a fact that in low orbit,
Centrifugal Force does not work,
and the entire Planet is in outer space,
and Centrifugal Force does not work there either,
and that is why I only write about what I know is a fact,
and why I know Gravity is the Force of God as Newton wrote,
when he said the people that wrote the Bible,
knew this before they wrote it.
</p>
<p class="text_indent">
The more mass a planet has, the more Ground Capability it has,
as such: a Gravity Generator must provide Greater Mass,
to become a Magnetic Force Field Generator:
I point this out if you want to build one for a Spacecraft,
as it turns out the Earth is a Spacecraft,
and is a Gravity Generator,
and without it, space travel will not be possible,
so to build a spacecraft we must build the ship into a Generator,
as such: the core of the ship must be a Massive Magnet,
it must provide the Ground,
and Ground refers to the Atom in the Ground State,
think of Earth like a bunch of Atom's,
each in a State that changes all the time,
so the more Atoms you have,
most of them have Atom's in the Ground State,
because Energy can only flow through an Atom when it is in the Ground State,
meaning is Space has collapsed,
and that is what happens when the Earths Magnetic Poles Reverse,
so all this Energy will also flow through the Earth,
and if you have Rocks that are ready for takeoff,
I hope they can handle this much energy,
this will come down in the form of Lightning,
and that means Earthquakes,
so make sure your Rockets can handle that as well,
so this Rocket or Spacecraft must have enough Mass to give all lifeforms enough Energy to survive,
keep in mind that to get Earth Normal Magnetic Field,
you would need its Mass,
and increasing the Magnetic Energy will not compensate for that problem,
it is a Mass issue, not a current flow limitation,
and as you know Centrifugal Force does not work in Space without enough Mass to create it,
so things do not spin the same way once you get out of the Planets Magnetosphere,
even in lower orbit, it is clear that you can not generate Gravity by spinning the Aircraft,
and that proves Gravity is not caused by Centrifugal Force,
but it is clear that it will take a lot of Mass,
so spacecraft will have to be huge,
and there is no way around this fact,
and you will have to build them in orbit,
and the design will have to incorporate a Generator into it,
as such the core will need to be free-floating,
so that the spacecraft can spin around it,
and it will have to be in a sphere shape,
such that the magnetic core is a sphere,
so I imagine this core as having a chamber in the center that houses a Trinary Engine,
or Ball Lightning,
or some means to make it more Grounding potential,
and the more Light you can generate the more ground will exist,
and this is beginning to sound like the Death Star from Star Wars the Movie.
</p>
<p class="text_indent">
Trinary Computers would work using a Lattice Logic Gate technology,
that allows the hardware to configure Logical Hardwired Gates,
using Light,
I talked about this technology in the Wizards Guild to the Trinary Universe,
instead of using Memory Logic Gates,
but you can use either Electricity or Light to run the circuits,
security is much tighter this way,
and computer keys can be manufactured to allow,
a chip to be created with a random value to be used as a key,
this value is based on a voltage and frequency that is set at burn time,
so when keys are made,
they can be printed in a way that the traces on the Circuit Board,
will always produce a different measurement,
this is due to the fact that the traces have individual imperfections,
so no two boards can ever be manufactured to the same specs,
making each unique,
and making it improbable for anyone to duplicate keys,
unlike a file with a bunch of random numbers that can easily be reproduced,
these Trinary Computers do not use normal Programming,
the Program is written to set the Logic Gates to perform a function,
so its language is unique for this ability,
so it can be controlled by a virus or malware, its hardware,
giving it more security,
so Trinary Computers will be more Secure.
</p>
<p class="text_indent">
Trinary Computer Keys are used to Log into a System,
it is a small device that houses an Electronic or Light Logic Gate Motherboard,
it has one Chip onboard,
but that one chip has many other Chips inside of it,
the one chip is called a Trinary Key Chip,
and it has thousands of Key Circuits Chips onboard.
The Trinary Key Chip has an Operating System (OS) built into it,
all Trinary Technology is hardwired circuitry,
so it can not be altered in any way,
the Trinary Computers have an interface to the Trinary Computer Keys,
and know the keys signature,
since its analog,
each Chip has its own signature,
the energy that flows through it will return a signature that the device records,
then later compares to make sure the device matches the signature,
this way no user name or password is required,
once logged into the system,
the Trinary Computer will know what User is assigned to the Trinary Key Chip,
and then it can authenticate the Trinary Key Chip,
by using Finger Print, Eye and Ear Scans,
that can also record the person's normal vital signs,
then use all these to verify that the person is alive,
making the system foolproof,
and you can do this without chip implants,
but I would keep that as an option,
so it is a Magic Wand or simply a Wand,
where Magic is just some technology that few understand how it works,
but it is not probable that anyone can hack it as easy as they can computers of this date.
</p>
<p class="text_indent">
The Trinary Computer Key Chips use a Lattice Logic Gates to operate,
these gates are programmed by the Trinary Computer when the Wand was first initialized,
and those states are maintained by an internal battery,
either Light or Electricity Battery,
such that a Key can be reset if it fails to authenticate,
this can also happen if you try to open the Container or Housing of the Wand,
this erases all codes that were only held in memory,
so the Key most be reinitialized before it will work again,
this is for Military use,
and I always design everything for Military use,
so it must have safeguards built-in.
</p>
<p class="text_indent">
Newton's math will be used to plot this journey,
I would need a Trinary Lightning Machine to provide all the Electromagnetic Energy,
this will shield us from the Solar Winds and Meteorites,
and I need to know how to aim this rocket at the Moon.
</p>
<p class="text_indent">
I started shooting guns when I was very young,
at first, it was throwing rocks,
then slingshots,
then BB guns,
then a 22,
then a 12 gauge shotgun,
then a 30-30,
then an M-16,
then a 50 Caliber,
and I would calculate how much energy the gun could produce,
by calculating the Projectiles trajectory,
for example, I could also calculate how far the BB would travel at every angle,
and BB's are subsonic,
so they were very slow,
I can just watch their trajectory,
I really do not have to calculate it,
if you aimed at a moving target,
you would have to know where that BB would be by the time it got to the Target,
some people call this leading,
but leading is misleading,
I have a target that I have to determine its course,
unless I am on horseback or in a helicopter, and I am moving,
then I have to calculate when the BB can intersect that target,
and I have to factor in the Wind, Temperature, and Humidity,
and even other factors,
some effecting how the spring will react,
others effecting how and why the target is moving,
so it is clear why BB guns might be safe for horseback riding,
it is clear they are unsafe for helicopters,
since it can fly as fast as the BB,
that is a joke,
but shooting from the back of a horse or a helicopter is not,
you must understand what is safe before pulling the trigger,
and when you are a moving and shooting at a moving target,
much like a Rocket,
because the Earth is spinning over a thousand miles an hour,
and it is trust is creating its trajectory,
and every projectile has its own trajectory characteristics.
</p>
<p class="text_indent">
Shooting a gun is something that is individual to how we think,
yet the mechanics of a gun are not,
its like Bowling,
some people think they need to put sidespin on the Ball,
when in reality,
I find it best to regulate how fast the ball can spin,
and limit that spin in a straight forward direction,
so the ball will roll in a predictable direction,
although trick shots are fun to make,
it is the business of the Laws of Physics that gets the highest score at the end of a game,
and the mechanics are not that different,
with a bowling ball, I have to keep my wrist straight,
and release the ball in a very predictable way.
When I aim a gun or a rifle,
I have to keep my wrist straight,
and at the same angle every time,
and I have to ensure that my trigger finger can point to the target,
if you use your eyes to aim you are a fool,
your finger is much more accurate,
making me a very dangerous person with a gun and a blindfold,
so I use both,
because your eyes can only fine-tune what your finger points at,
so I can either have both open or close one,
I find with one eye closed,
I can force my brain to see in 2 dimensions instead of 3,
and I focus on the end of the barrel,
regardless of whether it has a sight,
some guns I have shot have only had a rear site,
while some had none,
so what I had to figure out is what is the purpose of the sites,
and it is to ensure that your sight to the target,
is in line with the barrel of the gun,
so I have to ensure the front and rear site are aligned,
and I only need one eye for this,
if I have a moving target,
I need two eyes,
so I always aim with two eyes,
and as I am squeezing the trigger,
I close one to get a 2D view of the target,
and I use the closing of my eye to regulate my squeeze,
I practice this in my spare time to get good at it,
and I can use this to shot at the hip,
I do this by using the features of aiming with my eyes,
since I know that the tip of the barrel,
and rear of the barrel, form an angle that adjust the trajectory,
I adjust my finger to point where my eyes see.
Some weapons have adjustable rear or front sites,
or both,
and these adjustments are nice,
but they are also not required to be exact,
and if you learn to shot from the hip you will not need them,
the fact is they only slow me down,
when I am shooting in competition I do not take the time to aim,
instead, I focus on Steps,
my first step is to aim the barrel at the target,
so I have to point my finger at the target,
if I can not accurately point my finger at the target,
I can not shot accurately,
but most people can point their finger with a great deal of accuracy,
so about 99.999% of my aim is achieved by my finger,
so it does not matter if I shot from the hip or aim with my eyes,
the first step is to aim with my finger,
this means I have to hold my wrist in the same position all the time,
now the second step is to calculate where the projectile and the target will intersect,
and I have 3-dimensional coordinates to calculate,
so I have an x, y, and z,
so my third step involves 3 adjustments,
so to understand this coordinate system,
I must define my viewpoint,
my x is my body,
it represents where I am in relationship to my target,
and this is the first step I must make in this calculation,
basically its how I stand in relation to my target,
and that varies depending on if my target is moving or not,
but if I view it from the center position,
my shoulders should center on the target,
so my x is located between my shoulders,
and I only use my shoulders to make corrections,
but I can use my hips to move my shoulders,
but my legs must remain fixed,
running and shooting look cool,
but I am actually relating this to a Rocket,
and it is stationary,
and I only pivot at my hips to move my shoulders to adjust my x position,
now my y-axis is my arm on its yaw axis,
and the z-axis is my arm on its climb or dive axis,
just like an Aircraft,
so it helps if you know the basics of flying,
you can put your hands outside the door of a vehicle as its moving,
if you move your hand up the wind will blow it back toward you up in the air,
if you move your hand down the wind will blow it down toward the ground,
and if you pitch your hand from side to side,
it will move towards the vehicle then away from it,
so to calculate the “y”,
which is yaw,
and really only in control of the spin,
much like a Bowling ball,
if I want the ball to spin more on one side,
I have to twist my forearm,
this is great for a split,
but not useful for anything by windage when aiming a gun,
so for every 10 miles an hour of wind speed,
I add 1 degree of angle to my arm to counteract this force,
for a total of 10 degrees for 100 miles an hour winds,