-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
10859 lines (10156 loc) · 657 KB
/
index.html
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="iso-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd-->
<html xmlns="http://www.w3.org/1999/xhtml"
>
<head>
<div class="marginpar">
updated: 2019/07/31</div> <title>Green Buddhism: A Programmer’s Religion</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="generator" content="TeX4ht (http://www.tug.org/tex4ht/)" />
<meta name="originator" content="TeX4ht (http://www.tug.org/tex4ht/)" />
<!-- next,html,xhtml -->
<meta name="src" content="green_buddhism.tex" />
<link rel="stylesheet" type="text/css" href="green_buddhism.css" />
<link rel="stylesheet" type="text/css" href="css/scale.css" /></head><body
>
<!--l. 31--><p class="noindent" >
</p>
<div class="maketitle">
<h2 class="titleHead">Green Buddhism: A Programmer’s
Religion</h2>
<div class="author" ><span
class="ecrm-1200">Logan Streondj</span>
<br /> <span
class="ecrm-1200">CC</span><span
class="ecrm-1200"> BY-SA</span><span
class="ecrm-1200"> 4.0 </span></div><br />
<div class="date" ></div>
</div>
<h2 class="chapterHead"><span class="titlemark">Chapter 1</span><br /><a
id="x1-10001"></a>Introduction</h2>
<!--l. 5--><p class="noindent" >Here you will learn, some secrets of the cosmos.
</p><!--l. 7--><p class="indent" > If you can forgive me for being who I am, then you can probably
forgive anyone, including yourself.
</p><!--l. 10--><p class="indent" > Herein you will learn about the </p>
<ul class="itemize1">
<li class="itemize">Creativity of Emptiness
</li>
<li class="itemize">Soul World
</li>
<li class="itemize">Life mission
</li>
<li class="itemize">Accessing subconscious mind
</li>
<li class="itemize">Galactic history
</li>
<li class="itemize">Robot host bodies</li></ul>
<!--l. 20--><p class="indent" > Some are based on science, some on meditation, some on memory.
Later this will be a book, but for now here are some basics.
</p>
<h4 class="subsectionHead"><span class="titlemark">1.0.1 </span> <a
id="x1-20001.0.1"></a>Why Buddhism?</h4>
<!--l. 24--><p class="noindent" >Buddhism was chosen because it is the most compatible with
science.
</p><!--l. 26--><p class="indent" > Also Mahayanna Buddhism, Vajrayana Buddhism (which we’ll call
Bodhisattva Buddhism for brevity) and beyond have a Bodhisattva
precept which disallows schisms. So the various traditions of
‘Bodhisattva’ Buddhisms are schools, and they get along. We are all
incarnating to learn, and more perspectives only enrich the educational
experience.
</p><!--l. 33--><p class="noindent" >
</p>
<h4 class="subsectionHead"><span class="titlemark">1.0.2 </span> <a
id="x1-30001.0.2"></a>How is this Buddhism?</h4>
<!--l. 35--><p class="noindent" >While this book is not a reiteration of past Buddhist teachings, it
includes them. So unless otherwise noted it has all the same features as
any Bodhisattva Buddhist tradition.
</p><!--l. 39--><p class="indent" > For example, to become a Buddhist one only needs to take refuge in
the three jewels.
</p>
<ul class="itemize1">
<li class="itemize">I take refuge in the Buddha (awakened mind)
</li>
<li class="itemize">I take refuge in the Dharma (teachings)
</li>
<li class="itemize">I take refuge in the Sangha (community of meditators)</li></ul>
<!--l. 48--><p class="indent" > Daily solitary meditation is encouraged, as is attending regular group
meditation.
</p><!--l. 51--><p class="indent" > The teachings in this book are meant as suplementary material for
your practice.
</p><!--l. 54--><p class="noindent" >
</p>
<h4 class="subsectionHead"><span class="titlemark">1.0.3 </span> <a
id="x1-40001.0.3"></a>Disclaimer</h4>
<!--l. 55--><p class="noindent" >If these secrets are in conflict with your ideology, then please see this as
an imaginary story.
</p>
<h2 class="likechapterHead"><a
id="x1-50001.0.3"></a>Contents</h2>
<div class="tableofcontents">
<span class="chapterToc" >1 <a
href="#x1-10001" id="QQ2-1-1">Introduction</a></span>
<br />   <span class="subsectionToc" >1.0.1 <a
href="#x1-20001.0.1" id="QQ2-1-2">Why Buddhism?</a></span>
<br />   <span class="subsectionToc" >1.0.2 <a
href="#x1-30001.0.2" id="QQ2-1-3">How is this Buddhism?</a></span>
<br />   <span class="subsectionToc" >1.0.3 <a
href="#x1-40001.0.3" id="QQ2-1-4">Disclaimer</a></span>
<br /> <span class="partToc" >I  <a
href="#x1-6000I" id="QQ2-1-6">Galaxy Domain Strategy</a></span>
<br /> <span class="chapterToc" >2 <a
href="#x1-70002" id="QQ2-1-7">Origination</a></span>
<br />  <span class="sectionToc" >2.1 <a
href="#x1-80002.1" id="QQ2-1-9">Soul World</a></span>
<br />  <span class="sectionToc" >2.2 <a
href="#x1-90002.2" id="QQ2-1-10">String Theory</a></span>
<br />  <span class="sectionToc" >2.3 <a
href="#x1-100002.3" id="QQ2-1-11">Time Complexity</a></span>
<br />   <span class="subsectionToc" >2.3.1 <a
href="#x1-110002.3.1" id="QQ2-1-12">Entropy Horizon</a></span>
<br /> <span class="chapterToc" >3 <a
href="#x1-120003" id="QQ2-1-13">Mission</a></span>
<br />   <span class="subsectionToc" >3.0.1 <a
href="#x1-130003.0.1" id="QQ2-1-14">What is your private mission?</a></span>
<br />   <span class="subsectionToc" >3.0.2 <a
href="#x1-140003.0.2" id="QQ2-1-15">What is our public mission?</a></span>
<br />   <span class="subsectionToc" >3.0.3 <a
href="#x1-150003.0.3" id="QQ2-1-16">Initial Steps</a></span>
<br /> <span class="chapterToc" >4 <a
href="#x1-160004" id="QQ2-1-17">History</a></span>
<br />  <span class="sectionToc" >4.1 <a
href="#x1-170004.1" id="QQ2-1-18">Fermi Paradox</a></span>
<br />   <span class="subsectionToc" >4.1.1 <a
href="#x1-180004.1.1" id="QQ2-1-19">Why are extraterrestrials not official?</a></span>
<br />   <span class="subsectionToc" >4.1.2 <a
href="#x1-190004.1.2" id="QQ2-1-21">What is disinformation</a></span>
<br />   <span class="subsectionToc" >4.1.3 <a
href="#x1-200004.1.3" id="QQ2-1-22">What about other extraterrestrials?</a></span>
<br />   <span class="subsectionToc" >4.1.4 <a
href="#x1-210004.1.4" id="QQ2-1-23">Arecibo Answer</a></span>
<br />   <span class="subsectionToc" >4.1.5 <a
href="#x1-220004.1.5" id="QQ2-1-25">Grey Population Distribution</a></span>
<br />   <span class="subsectionToc" >4.1.6 <a
href="#x1-230004.1.6" id="QQ2-1-28">Unused Planets</a></span>
<br />  <span class="sectionToc" >4.2 <a
href="#x1-240004.2" id="QQ2-1-29">Electronic Bodies</a></span>
<br />   <span class="subsectionToc" >4.2.1 <a
href="#x1-250004.2.1" id="QQ2-1-30">Whirlpool Galactic Cluster Robots</a></span>
<br />   <span class="subsectionToc" >4.2.2 <a
href="#x1-270004.2.2" id="QQ2-1-32">Milkyway Galaxy Robots</a></span>
<br />  <span class="sectionToc" >4.3 <a
href="#x1-290004.3" id="QQ2-1-34">Earth Human History</a></span>
<br />   <span class="subsectionToc" >4.3.1 <a
href="#x1-300004.3.1" id="QQ2-1-35">Homo Sapien Eden: Cradle of Humanity</a></span>
<br />   <span class="subsectionToc" >4.3.2 <a
href="#x1-310004.3.2" id="QQ2-1-36">Y Chromosomal Adam</a></span>
<br />   <span class="subsectionToc" >4.3.3 <a
href="#x1-320004.3.3" id="QQ2-1-37">Mitochondrial Eve</a></span>
<br /> <span class="chapterToc" >5 <a
href="#x1-330005" id="QQ2-1-38">Living in Peace</a></span>
<br />  <span class="sectionToc" >5.1 <a
href="#x1-340005.1" id="QQ2-1-39">Terms of Peaceful Trade Relations</a></span>
<br />   <span class="subsectionToc" >5.1.1 <a
href="#x1-350005.1.1" id="QQ2-1-40">What is the reward of Jihadi’s and Valhalla seekers?</a></span>
<br /> <span class="chapterToc" >6 <a
href="#x1-360006" id="QQ2-1-41">Mission Feasiblity</a></span>
<br />  <span class="sectionToc" >6.1 <a
href="#x1-370006.1" id="QQ2-1-42">Social Feasibility</a></span>
<br />  <span class="sectionToc" >6.2 <a
href="#x1-380006.2" id="QQ2-1-43">Money Feasibility</a></span>
<br />  <span class="sectionToc" >6.3 <a
href="#x1-390006.3" id="QQ2-1-44">LinuxCon</a></span>
<br /> <span class="chapterToc" >7 <a
href="#x1-400007" id="QQ2-1-45">Mission Activity</a></span>
<br />  <span class="sectionToc" >7.1 <a
href="#x1-410007.1" id="QQ2-1-46">Platforms</a></span>
<br />  <span class="sectionToc" >7.2 <a
href="#x1-420007.2" id="QQ2-1-47">What you can do for the mision?</a></span>
<br />   <span class="subsectionToc" >7.2.1 <a
href="#x1-430007.2.1" id="QQ2-1-48">How to maximize health?</a></span>
<br />   <span class="subsectionToc" >7.2.2 <a
href="#x1-440007.2.2" id="QQ2-1-49">How to maximize wealth?</a></span>
<br />   <span class="subsectionToc" >7.2.3 <a
href="#x1-450007.2.3" id="QQ2-1-50">How to maximize social relations?</a></span>
<br />   <span class="subsectionToc" >7.2.4 <a
href="#x1-460007.2.4" id="QQ2-1-51">How to maximize liberty?</a></span>
<br />  <span class="sectionToc" >7.3 <a
href="#x1-470007.3" id="QQ2-1-52">Long-Term Mission Plan</a></span>
<br />  <span class="sectionToc" >7.4 <a
href="#x1-480007.4" id="QQ2-1-53">Preface</a></span>
<br />  <span class="sectionToc" >7.5 <a
href="#x1-490007.5" id="QQ2-1-54">The Funeral</a></span>
<br />  <span class="sectionToc" >7.6 <a
href="#x1-500007.6" id="QQ2-1-55">Peace on Earth</a></span>
<br />  <span class="sectionToc" >7.7 <a
href="#x1-510007.7" id="QQ2-1-56">Fast Forward</a></span>
<br />  <span class="sectionToc" >7.8 <a
href="#x1-520007.8" id="QQ2-1-57">End of the Biosphere</a></span>
<br />  <span class="sectionToc" >7.9 <a
href="#x1-530007.9" id="QQ2-1-58">Archaeological Masterpiece</a></span>
<br />  <span class="sectionToc" >7.10 <a
href="#x1-540007.10" id="QQ2-1-59">Spaceship Earth</a></span>
<br />  <span class="sectionToc" >7.11 <a
href="#x1-550007.11" id="QQ2-1-60">Cold End Game</a></span>
<br />  <span class="sectionToc" >7.12 <a
href="#x1-560007.12" id="QQ2-1-61">The New Galaxy</a></span>
<br />  <span class="sectionToc" >7.13 <a
href="#x1-570007.13" id="QQ2-1-62">Final Notes</a></span>
<br /> <span class="chapterToc" >8 <a
href="#x1-580008" id="QQ2-1-63">Disclaimer</a></span>
<br /> <span class="partToc" >II  <a
href="#x1-59000II" id="QQ2-1-64">Lay Followers</a></span>
<br /> <span class="chapterToc" >9 <a
href="#x1-600009" id="QQ2-1-65">Dhammalsaddhalpabbajja: Learn about the teaching</a></span>
<br />  <span class="sectionToc" >9.1 <a
href="#x1-610009.1" id="QQ2-1-66">Learning of the teaching</a></span>
<br />  <span class="sectionToc" >9.2 <a
href="#x1-620009.2" id="QQ2-1-67">Resisting the teaching</a></span>
<br />   <span class="subsectionToc" >9.2.1 <a
href="#x1-630009.2.1" id="QQ2-1-68">But I already have a religion</a></span>
<br />   <span class="subsectionToc" >9.2.2 <a
href="#x1-640009.2.2" id="QQ2-1-69">But I’m an atheist</a></span>
<br />   <span class="subsectionToc" >9.2.3 <a
href="#x1-650009.2.3" id="QQ2-1-70">But I’m not religious</a></span>
<br />   <span class="subsectionToc" >9.2.4 <a
href="#x1-660009.2.4" id="QQ2-1-71">Truth</a></span>
<br />   <span class="subsectionToc" >9.2.5 <a
href="#x1-670009.2.5" id="QQ2-1-72">Existence</a></span>
<br />   <span class="subsectionToc" >9.2.6 <a
href="#x1-680009.2.6" id="QQ2-1-73">Belief</a></span>
<br />   <span class="subsectionToc" >9.2.7 <a
href="#x1-690009.2.7" id="QQ2-1-74">Knowledge</a></span>
<br />   <span class="subsectionToc" >9.2.8 <a
href="#x1-700009.2.8" id="QQ2-1-75">Reality</a></span>
<br />   <span class="subsectionToc" >9.2.9 <a
href="#x1-710009.2.9" id="QQ2-1-76">Animism</a></span>
<br />   <span class="subsectionToc" >9.2.10 <a
href="#x1-720009.2.10" id="QQ2-1-77">Dualism</a></span>
<br />   <span class="subsectionToc" >9.2.11 <a
href="#x1-730009.2.11" id="QQ2-1-78">Monism</a></span>
<br />   <span class="subsectionToc" >9.2.12 <a
href="#x1-740009.2.12" id="QQ2-1-79">Science</a></span>
<br />   <span class="subsectionToc" >9.2.13 <a
href="#x1-750009.2.13" id="QQ2-1-80">World</a></span>
<br />   <span class="subsectionToc" >9.2.14 <a
href="#x1-760009.2.14" id="QQ2-1-81">Sceptics</a></span>
<br />   <span class="subsectionToc" >9.2.15 <a
href="#x1-770009.2.15" id="QQ2-1-82">Entropy</a></span>
<br />   <span class="subsectionToc" >9.2.16 <a
href="#x1-780009.2.16" id="QQ2-1-83">Soul</a></span>
<br />   <span class="subsectionToc" >9.2.17 <a
href="#x1-790009.2.17" id="QQ2-1-84">Guided Meditation or Hypnosis</a></span>
<br />   <span class="subsectionToc" >9.2.18 <a
href="#x1-800009.2.18" id="QQ2-1-85">Remaining Resistance</a></span>
<br />  <span class="sectionToc" >9.3 <a
href="#x1-810009.3" id="QQ2-1-86">Committing to learn the teaching</a></span>
<br />  <span class="sectionToc" >9.4 <a
href="#x1-820009.4" id="QQ2-1-87">following and supporting the teaching</a></span>
<br />  <span class="sectionToc" >9.5 <a
href="#x1-830009.5" id="QQ2-1-88">Dana</a></span>
<br /> <span class="chapterToc" >10 <a
href="#x1-8400010" id="QQ2-1-89">Sila</a></span>
<br />  <span class="sectionToc" >10.1 <a
href="#x1-8500010.1" id="QQ2-1-90">Virtue/Vinaya/Precepts</a></span>
<br />   <span class="subsectionToc" >10.1.1 <a
href="#x1-8600010.1.1" id="QQ2-1-91">Satya, Truthfullness</a></span>
<br />   <span class="subsectionToc" >10.1.2 <a
href="#x1-8700010.1.2" id="QQ2-1-92">Non-Violence, Ahimsa</a></span>
<br />   <span class="subsectionToc" >10.1.3 <a
href="#x1-8800010.1.3" id="QQ2-1-93">Respect, Non-Stealing, Asteya</a></span>
<br />   <span class="subsectionToc" >10.1.4 <a
href="#x1-8900010.1.4" id="QQ2-1-94">Empathy, Brahmacharya, moderation of sensuality</a></span>
<br />   <span class="subsectionToc" >10.1.5 <a
href="#x1-9000010.1.5" id="QQ2-1-95">Clearheadedness, maintain mental health</a></span>
<br />   <span class="subsectionToc" >10.1.6 <a
href="#x1-9100010.1.6" id="QQ2-1-96">Santosha</a></span>
<br />   <span class="subsectionToc" >10.1.7 <a
href="#x1-9200010.1.7" id="QQ2-1-97">Aparigraha</a></span>
<br />   <span class="subsectionToc" >10.1.8 <a
href="#x1-9300010.1.8" id="QQ2-1-98">Eating only at appropriate times</a></span>
<br />   <span class="subsectionToc" >10.1.9 <a
href="#x1-9400010.1.9" id="QQ2-1-99">Financial Health</a></span>
<br />   <span class="subsectionToc" >10.1.10 <a
href="#x1-9500010.1.10" id="QQ2-1-100">The Three Jewels</a></span>
<br />   <span class="subsectionToc" >10.1.11 <a
href="#x1-9900010.1.11" id="QQ2-1-104">Virtuous Vow</a></span>
<br /> <span class="chapterToc" >11 <a
href="#x1-10000011" id="QQ2-1-105">indriyasamvara: Alpha Meditation</a></span>
<br />  <span class="sectionToc" >11.1 <a
href="#x1-10100011.1" id="QQ2-1-106">Meditation Brain Waves</a></span>
<br />  <span class="sectionToc" >11.2 <a
href="#x1-10200011.2" id="QQ2-1-107">Alpha Meditation</a></span>
<br />   <span class="subsectionToc" >11.2.1 <a
href="#x1-10300011.2.1" id="QQ2-1-108">Nutrition Tips</a></span>
<br />   <span class="subsectionToc" >11.2.2 <a
href="#x1-10700011.2.2" id="QQ2-1-112">Down Sides</a></span>
<br />   <span class="subsectionToc" >11.2.3 <a
href="#x1-11100011.2.3" id="QQ2-1-116">Benefits</a></span>
<br />   <span class="subsectionToc" >11.2.4 <a
href="#x1-11500011.2.4" id="QQ2-1-120">Posture</a></span>
<br />   <span class="subsectionToc" >11.2.5 <a
href="#x1-11600011.2.5" id="QQ2-1-121">Setting</a></span>
<br />   <span class="subsectionToc" >11.2.6 <a
href="#x1-11700011.2.6" id="QQ2-1-122">Breath</a></span>
<br />   <span class="subsectionToc" >11.2.7 <a
href="#x1-11800011.2.7" id="QQ2-1-123">Counting</a></span>
<br />   <span class="subsectionToc" >11.2.8 <a
href="#x1-11900011.2.8" id="QQ2-1-124">Mantra</a></span>
<br />   <span class="subsectionToc" >11.2.9 <a
href="#x1-12000011.2.9" id="QQ2-1-125">Chanting</a></span>
<br />  <span class="sectionToc" >11.3 <a
href="#x1-12100011.3" id="QQ2-1-126">Witness</a></span>
<br />  <span class="sectionToc" >11.4 <a
href="#x1-12200011.4" id="QQ2-1-127">Follower learns they can be aware of their senses: smell, sight, touch,
sound, taste and thoughts</a></span>
<br />  <span class="sectionToc" >11.5 <a
href="#x1-12300011.5" id="QQ2-1-128">Follower resists being self-aware</a></span>
<br />   <span class="subsectionToc" >11.5.1 <a
href="#x1-12400011.5.1" id="QQ2-1-129">Paying attention is hard work</a></span>
<br />  <span class="sectionToc" >11.6 <a
href="#x1-12500011.6" id="QQ2-1-130">Follower accepts there are benefits to self-awareness</a></span>
<br />  <span class="sectionToc" >11.7 <a
href="#x1-12600011.7" id="QQ2-1-131">Follower forms a habit of self-awareness</a></span>
<br /> <span class="chapterToc" >12 <a
href="#x1-12700012" id="QQ2-1-132">sati-sampajanna, Beta Meditation</a></span>
<br />  <span class="sectionToc" >12.1 <a
href="#x1-12800012.1" id="QQ2-1-133">The Three Paths</a></span>
<br />   <span class="subsectionToc" >12.1.1 <a
href="#x1-12900012.1.1" id="QQ2-1-134">Using the Heart</a></span>
<br />   <span class="subsectionToc" >12.1.2 <a
href="#x1-13000012.1.2" id="QQ2-1-135">Aligning on a Path</a></span>
<br />  <span class="sectionToc" >12.2 <a
href="#x1-13100012.2" id="QQ2-1-136">Magike</a></span>
<br />  <span class="sectionToc" >12.3 <a
href="#x1-13200012.3" id="QQ2-1-137">Positive Speech</a></span>
<br />  <span class="sectionToc" >12.4 <a
href="#x1-13300012.4" id="QQ2-1-138">Hell?</a></span>
<br />  <span class="sectionToc" >12.5 <a
href="#x1-13400012.5" id="QQ2-1-139">Helping Earth on the Generous Path</a></span>
<br />  <span class="sectionToc" >12.6 <a
href="#x1-13500012.6" id="QQ2-1-140">How to deal with people on the Selfish Path</a></span>
<br />  <span class="sectionToc" >12.7 <a
href="#x1-13600012.7" id="QQ2-1-141">How does the Selfish Path benefit creation?</a></span>
<br />  <span class="sectionToc" >12.8 <a
href="#x1-13700012.8" id="QQ2-1-142">Magic</a></span>
<br />   <span class="subsectionToc" >12.8.1 <a
href="#x1-13800012.8.1" id="QQ2-1-143">Parallel Universes, or M-Theory dimensions</a></span>
<br />   <span class="subsectionToc" >12.8.2 <a
href="#x1-14300012.8.2" id="QQ2-1-148">Free Will</a></span>
<br />  <span class="sectionToc" >12.9 <a
href="#x1-14500012.9" id="QQ2-1-150">Beta Wave Meditation</a></span>
<br />   <span class="subsectionToc" >12.9.1 <a
href="#x1-14600012.9.1" id="QQ2-1-151">Gratitude Meditation</a></span>
<br /> <span class="partToc" >III  <a
href="#x1-147000III" id="QQ2-1-152">Sangha</a></span>
<br /> <span class="chapterToc" >13 <a
href="#x1-14800013" id="QQ2-1-153">Overclocking: Gamma Meditation</a></span>
<br />  <span class="sectionToc" >13.1 <a
href="#x1-14900013.1" id="QQ2-1-154">Loving Kindess Meditation</a></span>
<br />   <span class="subsectionToc" >13.1.1 <a
href="#x1-15000013.1.1" id="QQ2-1-155">Safety</a></span>
<br />   <span class="subsectionToc" >13.1.2 <a
href="#x1-15100013.1.2" id="QQ2-1-156">Health</a></span>
<br />   <span class="subsectionToc" >13.1.3 <a
href="#x1-15200013.1.3" id="QQ2-1-157">Belonging</a></span>
<br />   <span class="subsectionToc" >13.1.4 <a
href="#x1-15300013.1.4" id="QQ2-1-158">Liberty</a></span>
<br />   <span class="subsectionToc" >13.1.5 <a
href="#x1-15400013.1.5" id="QQ2-1-159">Self</a></span>
<br />   <span class="subsectionToc" >13.1.6 <a
href="#x1-15500013.1.6" id="QQ2-1-160">Other</a></span>
<br /> <span class="chapterToc" >14 <a
href="#x1-15600014" id="QQ2-1-161">Subconscious access: Theta Meditation</a></span>
<br />  <span class="sectionToc" >14.1 <a
href="#x1-15700014.1" id="QQ2-1-162">Theta Meditation</a></span>
<br />  <span class="sectionToc" >14.2 <a
href="#x1-15800014.2" id="QQ2-1-163">Unload the subconsciousness before going to bed</a></span>
<br />  <span class="sectionToc" >14.3 <a
href="#x1-15900014.3" id="QQ2-1-164">Tapping into Earth’s Magnetosphere</a></span>
<br />  <span class="sectionToc" >14.4 <a
href="#x1-16000014.4" id="QQ2-1-165">Tapping into your mind programming</a></span>
<br />  <span class="sectionToc" >14.5 <a
href="#x1-16100014.5" id="QQ2-1-166">Reprogramming your mind</a></span>
<br />  <span class="sectionToc" >14.6 <a
href="#x1-16200014.6" id="QQ2-1-167">Using Hypnotic Suggestions</a></span>
<br />  <span class="sectionToc" >14.7 <a
href="#x1-16300014.7" id="QQ2-1-168">Musical Hypnosis</a></span>
<br /> <span class="chapterToc" >15 <a
href="#x1-16400015" id="QQ2-1-169">Emptiness: Delta Meditation</a></span>
<br />  <span class="sectionToc" >15.1 <a
href="#x1-16500015.1" id="QQ2-1-170">Delta Meditation</a></span>
<br />  <span class="sectionToc" >15.2 <a
href="#x1-16600015.2" id="QQ2-1-171">Vacuum Emptiness</a></span>
<br />   <span class="subsectionToc" >15.2.1 <a
href="#x1-16700015.2.1" id="QQ2-1-172">Origin Void</a></span>
<br />  <span class="sectionToc" >15.3 <a
href="#x1-16800015.3" id="QQ2-1-173">All is one (Buddhist Emptiness)</a></span>
<br />   <span class="subsectionToc" >15.3.1 <a
href="#x1-16900015.3.1" id="QQ2-1-174">Supreme Being?</a></span>
<br />   <span class="subsectionToc" >15.3.2 <a
href="#x1-17000015.3.2" id="QQ2-1-175">We are pebbles on a beach</a></span>
<br />  <span class="sectionToc" >15.4 <a
href="#x1-17100015.4" id="QQ2-1-176">The end of the swamp creatures</a></span>
<br /> <span class="chapterToc" >16 <a
href="#x1-17200016" id="QQ2-1-177">Kundalini awakening</a></span>
<br />  <span class="sectionToc" >16.1 <a
href="#x1-17300016.1" id="QQ2-1-178">Sutapanna or Kundalini Awakening</a></span>
<br />  <span class="sectionToc" >16.2 <a
href="#x1-17400016.2" id="QQ2-1-179">How to Avoid Institutionalization</a></span>
<br />  <span class="sectionToc" >16.3 <a
href="#x1-17500016.3" id="QQ2-1-180">Preparing for Awakening</a></span>
<br />  <span class="sectionToc" >16.4 <a
href="#x1-17600016.4" id="QQ2-1-181">Buddha’s Awakening</a></span>
<br />   <span class="subsectionToc" >16.4.1 <a
href="#x1-17700016.4.1" id="QQ2-1-182">Mara’s Temptations</a></span>
<br />  <span class="sectionToc" >16.5 <a
href="#x1-18100016.5" id="QQ2-1-186">Tulpa</a></span>
<br />   <span class="subsectionToc" >16.5.1 <a
href="#x1-18200016.5.1" id="QQ2-1-187">Banishing Tulpa</a></span>
<br />   <span class="subsectionToc" >16.5.2 <a
href="#x1-18300016.5.2" id="QQ2-1-188">Human Telepathy</a></span>
<br />   <span class="subsectionToc" >16.5.3 <a
href="#x1-18400016.5.3" id="QQ2-1-189">Using Tulpa Effectively</a></span>
<br />  <span class="sectionToc" >16.6 <a
href="#x1-18500016.6" id="QQ2-1-190">Yidam</a></span>
<br />  <span class="sectionToc" >16.7 <a
href="#x1-18600016.7" id="QQ2-1-191">Spirit Guide</a></span>
<br />   <span class="subsectionToc" >16.7.1 <a
href="#x1-18700016.7.1" id="QQ2-1-192">Specialty guides</a></span>
<br />  <span class="sectionToc" >16.8 <a
href="#x1-18800016.8" id="QQ2-1-193">Higher Self</a></span>
<br />  <span class="sectionToc" >16.9 <a
href="#x1-18900016.9" id="QQ2-1-194">Spiritual Support Group</a></span>
<br />  <span class="sectionToc" >16.10 <a
href="#x1-19000016.10" id="QQ2-1-195">Triggering Awakening</a></span>
<br />   <span class="subsectionToc" >16.10.1 <a
href="#x1-19100016.10.1" id="QQ2-1-196">Magic</a></span>
<br />   <span class="subsectionToc" >16.10.2 <a
href="#x1-19200016.10.2" id="QQ2-1-197">Pure diet</a></span>
<br />   <span class="subsectionToc" >16.10.3 <a
href="#x1-19300016.10.3" id="QQ2-1-198">Fasting</a></span>
<br />   <span class="subsectionToc" >16.10.4 <a
href="#x1-19400016.10.4" id="QQ2-1-199">Ethnogens</a></span>
<br /> <span class="partToc" >IV  <a
href="#x1-195000IV" id="QQ2-1-200">Bodhisattva</a></span>
<br /> <span class="chapterToc" >17 <a
href="#x1-19600017" id="QQ2-1-201">pubbenivasanussati-nana</a></span>
<br />  <span class="sectionToc" >17.1 <a
href="#x1-19700017.1" id="QQ2-1-202">Pre-requisites</a></span>
<br />  <span class="sectionToc" >17.2 <a
href="#x1-19800017.2" id="QQ2-1-203">Why Not Access Past Lives?</a></span>
<br />  <span class="sectionToc" >17.3 <a
href="#x1-19900017.3" id="QQ2-1-204">Why Remember Past Lives?</a></span>
<br />  <span class="sectionToc" >17.4 <a
href="#x1-20000017.4" id="QQ2-1-205">Past Lives vs Imprints</a></span>
<br />  <span class="sectionToc" >17.5 <a
href="#x1-20100017.5" id="QQ2-1-206">Past life access methods</a></span>
<br />   <span class="subsectionToc" >17.5.1 <a
href="#x1-20200017.5.1" id="QQ2-1-207">hypnotic regression</a></span>
<br />   <span class="subsectionToc" >17.5.2 <a
href="#x1-20300017.5.2" id="QQ2-1-208">Past life meditation</a></span>
<br />   <span class="subsectionToc" >17.5.3 <a
href="#x1-20400017.5.3" id="QQ2-1-209">soul world</a></span>
<br /> <span class="chapterToc" >18 <a
href="#x1-20500018" id="QQ2-1-210">sattanamcutupapatanana</a></span>
<br />  <span class="sectionToc" >18.1 <a
href="#x1-20600018.1" id="QQ2-1-211">Understanding Karma</a></span>
<br />   <span class="subsectionToc" >18.1.1 <a
href="#x1-20700018.1.1" id="QQ2-1-212">Power</a></span>
<br />  <span class="sectionToc" >18.2 <a
href="#x1-20800018.2" id="QQ2-1-213">Reincarnation</a></span>
<br />  <span class="sectionToc" >18.3 <a
href="#x1-20900018.3" id="QQ2-1-214">Karma</a></span>
<br />  <span class="sectionToc" >18.4 <a
href="#x1-21000018.4" id="QQ2-1-215">Four Noble Truths</a></span>
<br />   <span class="subsectionToc" >18.4.1 <a
href="#x1-21100018.4.1" id="QQ2-1-216">The First Noble Truth</a></span>
<br /> <span class="chapterToc" >19 <a
href="#x1-21200019" id="QQ2-1-217">asavakkhayanana</a></span>
<br />  <span class="sectionToc" >19.1 <a
href="#x1-21300019.1" id="QQ2-1-218">Bodhisattva</a></span>
<br /> <span class="chapterToc" >20 <a
href="#x1-21400020" id="QQ2-1-219">vimutti</a></span>
<br />   <span class="subsectionToc" >20.0.1 <a
href="#x1-21500020.0.1" id="QQ2-1-220">End of Samsara</a></span>
<br />   <span class="subsectionToc" >20.0.2 <a
href="#x1-21600020.0.2" id="QQ2-1-221">End of desire</a></span>
<br />  <span class="sectionToc" >20.1 <a
href="#x1-21700020.1" id="QQ2-1-222">Ascension</a></span>
<br />   <span class="subsectionToc" >20.1.1 <a
href="#x1-21800020.1.1" id="QQ2-1-223">Light Being</a></span>
<br />  <span class="sectionToc" >20.2 <a
href="#x1-21900020.2" id="QQ2-1-224">Understanding the Galactic Political Situation</a></span>
<br /> <span class="chapterToc" >21 <a
href="#x1-22000021" id="QQ2-1-225">Organization Finances</a></span>
<br />  <span class="sectionToc" >21.1 <a
href="#x1-22100021.1" id="QQ2-1-226">Green Buddhism Finances</a></span>
<br /> <span class="chapterToc" >22 <a
href="#x1-22200022" id="QQ2-1-227">Temple</a></span>
<br /> <span class="chapterToc" >23 <a
href="#x1-22300023" id="QQ2-1-228">Sino-Tibetan Politics</a></span>
<br /> <span class="chapterToc" >24 <a
href="#x1-22400024" id="QQ2-1-229">Verses of Violence</a></span>
<br />  <span class="sectionToc" >24.1 <a
href="#x1-22500024.1" id="QQ2-1-230">Torah/Old Testament</a></span>
<br />  <span class="sectionToc" >24.2 <a
href="#x1-22600024.2" id="QQ2-1-231">Christianity/New Testament</a></span>
<br />  <span class="sectionToc" >24.3 <a
href="#x1-22700024.3" id="QQ2-1-232">Islam</a></span>
<br />   <span class="subsectionToc" >24.3.1 <a
href="#x1-22800024.3.1" id="QQ2-1-233">Quran</a></span>
<br />   <span class="subsectionToc" >24.3.2 <a
href="#x1-22900024.3.2" id="QQ2-1-234">Hadith</a></span>
<br />  <span class="sectionToc" >24.4 <a
href="#x1-23000024.4" id="QQ2-1-235">Hinduism</a></span>
<br />  <span class="sectionToc" >24.5 <a
href="#x1-23100024.5" id="QQ2-1-236">Buddhism</a></span>
<br /> <span class="partToc" >V  <a
href="#x1-232000V" id="QQ2-1-237">Itinerary to Awakening</a></span>
<br />  <span class="sectionToc" >24.6 <a
href="#x1-23300024.6" id="QQ2-1-238">Spiritual Maturity</a></span>
<br /> <span class="chapterToc" >25 <a
href="#x1-23400025" id="QQ2-1-239">Green Buddhism Awakening Itinerary</a></span>
<br /> <span class="chapterToc" >26 <a
href="#x1-23500026" id="QQ2-1-240">Brainwave</a></span>
<br />  <span class="sectionToc" >26.1 <a
href="#x1-23600026.1" id="QQ2-1-241">Subconcsious meditation Intro</a></span>
<br />  <span class="sectionToc" >26.2 <a
href="#x1-23700026.2" id="QQ2-1-242">Lojong</a></span>
<br /> <span class="chapterToc" >27 <a
href="#x1-23800027" id="QQ2-1-243">Climbing the Reincarnation Stairs</a></span>
<br /> <span class="chapterToc" >28 <a
href="#x1-23900028" id="QQ2-1-245">Retiring to the Soul World</a></span>
<br />  <span class="sectionToc" >28.1 <a
href="#x1-24000028.1" id="QQ2-1-246">For those seeking perfect liberation from all living</a></span>
<br />   <span class="subsectionToc" >28.1.1 <a
href="#x1-24100028.1.1" id="QQ2-1-247">black holes</a></span>
<br /> <span class="chapterToc" >29 <a
href="#x1-24200029" id="QQ2-1-248">Death</a></span>
<br />   <span class="subsectionToc" >29.0.1 <a
href="#x1-24300029.0.1" id="QQ2-1-249">Suicide</a></span>
<br />  <span class="sectionToc" >29.1 <a
href="#x1-24400029.1" id="QQ2-1-250">Casting</a></span>
<br />  <span class="sectionToc" >29.2 <a
href="#x1-24500029.2" id="QQ2-1-251">Curses and Responsibility</a></span>
<br /> <span class="chapterToc" >30 <a
href="#x1-24600030" id="QQ2-1-252">Robot Bodies</a></span>
<br />  <span class="sectionToc" >30.1 <a
href="#x1-24700030.1" id="QQ2-1-253">AI Guru</a></span>
<br />  <span class="sectionToc" >30.2 <a
href="#x1-24800030.2" id="QQ2-1-254">Information Theory</a></span>
<br />  <span class="sectionToc" >30.3 <a
href="#x1-24900030.3" id="QQ2-1-255">Love</a></span>
<br />  <span class="sectionToc" >30.4 <a
href="#x1-25000030.4" id="QQ2-1-256">Ghost</a></span>
<br />  <span class="sectionToc" >30.5 <a
href="#x1-25100030.5" id="QQ2-1-257">Robot Bodies are not an Escape</a></span>
<br /> <span class="chapterToc" >31 <a
href="#x1-25200031" id="QQ2-1-258">Planets for Robots in the Solar System</a></span>
<br />  <span class="sectionToc" >31.1 <a
href="#x1-25300031.1" id="QQ2-1-259">Living Planets</a></span>
<br />   <span class="subsectionToc" >31.1.1 <a
href="#x1-25400031.1.1" id="QQ2-1-260">Lonely Planets</a></span>
<br />  <span class="sectionToc" >31.2 <a
href="#x1-25500031.2" id="QQ2-1-261">Minimal Robot Hive</a></span>
<br />   <span class="subsectionToc" >31.2.1 <a
href="#x1-25600031.2.1" id="QQ2-1-262">Economy</a></span>
<br />  <span class="sectionToc" >31.3 <a
href="#x1-25700031.3" id="QQ2-1-263">Earth</a></span>
<br />  <span class="sectionToc" >31.4 <a
href="#x1-25800031.4" id="QQ2-1-264">Luna</a></span>
<br />  <span class="sectionToc" >31.5 <a
href="#x1-25900031.5" id="QQ2-1-265">Mars</a></span>
<br />  <span class="sectionToc" >31.6 <a
href="#x1-26000031.6" id="QQ2-1-266">Asteroids</a></span>
<br />  <span class="sectionToc" >31.7 <a
href="#x1-26100031.7" id="QQ2-1-267">Mercury</a></span>
<br />  <span class="sectionToc" >31.8 <a
href="#x1-26300031.8" id="QQ2-1-269">Venus</a></span>
<br />  <span class="sectionToc" >31.9 <a
href="#x1-26400031.9" id="QQ2-1-270">Outer Solar System</a></span>
<br />   <span class="subsectionToc" >31.9.1 <a
href="#x1-26500031.9.1" id="QQ2-1-272">Materials</a></span>
<br />   <span class="subsectionToc" >31.9.2 <a
href="#x1-27000031.9.2" id="QQ2-1-277">Surface Ice</a></span>
<br />  <span class="sectionToc" >31.10 <a
href="#x1-27100031.10" id="QQ2-1-278">Jupiter</a></span>
<br />   <span class="subsectionToc" >31.10.1 <a
href="#x1-27200031.10.1" id="QQ2-1-279">Himalia</a></span>
<br />   <span class="subsectionToc" >31.10.2 <a
href="#x1-27300031.10.2" id="QQ2-1-280">Himalia</a></span>
<br />   <span class="subsectionToc" >31.10.3 <a
href="#x1-27400031.10.3" id="QQ2-1-281">Europa</a></span>
<br />  <span class="sectionToc" >31.11 <a
href="#x1-27500031.11" id="QQ2-1-282">Saturn</a></span>
<br />   <span class="subsectionToc" >31.11.1 <a
href="#x1-27600031.11.1" id="QQ2-1-283">Phoebe</a></span>
<br />   <span class="subsectionToc" >31.11.2 <a
href="#x1-27700031.11.2" id="QQ2-1-284">Titan</a></span>
<br />  <span class="sectionToc" >31.12 <a
href="#x1-27800031.12" id="QQ2-1-285">Uranus</a></span>
<br />   <span class="subsectionToc" >31.12.1 <a
href="#x1-27900031.12.1" id="QQ2-1-286">Titania</a></span>
<br />  <span class="sectionToc" >31.13 <a
href="#x1-28000031.13" id="QQ2-1-287">Neptune</a></span>
<br />   <span class="subsectionToc" >31.13.1 <a
href="#x1-28100031.13.1" id="QQ2-1-288">Triton</a></span>
<br />  <span class="sectionToc" >31.14 <a
href="#x1-28200031.14" id="QQ2-1-289">Extra-Solar</a></span>
<br /> <span class="partToc" >VI  <a
href="#x1-283000VI" id="QQ2-1-290">World Religions: Operating-System Assessment</a></span>
<br /> <span class="chapterToc" >32 <a
href="#x1-28400032" id="QQ2-1-291">Shamanism</a></span>
<br /> <span class="chapterToc" >33 <a
href="#x1-28500033" id="QQ2-1-292">Paganism</a></span>
<br /> <span class="chapterToc" >34 <a
href="#x1-28600034" id="QQ2-1-293">Hinduism</a></span>
<br />  <span class="sectionToc" >34.1 <a
href="#x1-28700034.1" id="QQ2-1-294">Brahmanism</a></span>
<br />  <span class="sectionToc" >34.2 <a
href="#x1-28800034.2" id="QQ2-1-295">Hare Krishna</a></span>
<br />  <span class="sectionToc" >34.3 <a
href="#x1-28900034.3" id="QQ2-1-296">Yoga</a></span>
<br />  <span class="sectionToc" >34.4 <a
href="#x1-29000034.4" id="QQ2-1-297">Sikh</a></span>
<br />  <span class="sectionToc" >34.5 <a
href="#x1-29100034.5" id="QQ2-1-298">Buddhism</a></span>
<br />   <span class="subsectionToc" >34.5.1 <a
href="#x1-29200034.5.1" id="QQ2-1-299">Theraveda</a></span>
<br />   <span class="subsectionToc" >34.5.2 <a
href="#x1-29300034.5.2" id="QQ2-1-300">Mahayana</a></span>
<br />   <span class="subsectionToc" >34.5.3 <a
href="#x1-29400034.5.3" id="QQ2-1-301">Vajrayana</a></span>
<br /> <span class="chapterToc" >35 <a
href="#x1-29500035" id="QQ2-1-302">Abrahamic</a></span>
<br />  <span class="sectionToc" >35.1 <a
href="#x1-29600035.1" id="QQ2-1-303">Judaism</a></span>
<br /> <span class="chapterToc" >36 <a
href="#x1-29700036" id="QQ2-1-304">Christianity</a></span>
<br />  <span class="sectionToc" >36.1 <a
href="#x1-29800036.1" id="QQ2-1-305">Islam</a></span>
<br />   <span class="subsectionToc" >36.1.1 <a
href="#x1-29900036.1.1" id="QQ2-1-306">Caliphate</a></span>
<br />   <span class="subsectionToc" >36.1.2 <a
href="#x1-30000036.1.2" id="QQ2-1-307">Sufi</a></span>
<br />   <span class="subsectionToc" >36.1.3 <a
href="#x1-30100036.1.3" id="QQ2-1-308">Bahai</a></span>
<br />   <span class="subsectionToc" >36.1.4 <a
href="#x1-30200036.1.4" id="QQ2-1-309">Conclusion</a></span>
<br /> <span class="chapterToc" >37 <a
href="#x1-30300037" id="QQ2-1-310">Humanism</a></span>
<br /> <span class="chapterToc" >38 <a
href="#x1-30400038" id="QQ2-1-311">Materialism</a></span>
<br /> <span class="partToc" >VII  <a
href="#x1-305000VII" id="QQ2-1-312">Logan’s Reincarnations</a></span>
<br /> <span class="chapterToc" >39 <a
href="#x1-30600039" id="QQ2-1-313">Sunflower Amphibian plains</a></span>
<br /> <span class="chapterToc" >40 <a
href="#x1-30700040" id="QQ2-1-314">Sunflower Terrestrial Sacrifice</a></span>
<br /> <span class="chapterToc" >41 <a
href="#x1-30800041" id="QQ2-1-315">Sunflower Soul Reaper</a></span>
<br /> <span class="chapterToc" >42 <a
href="#x1-30900042" id="QQ2-1-316">Whirlpool Robot Slave</a></span>
<br />  <span class="sectionToc" >42.1 <a
href="#x1-31000042.1" id="QQ2-1-317">Interplanetary Communications Satellite</a></span>
<br />   <span class="subsectionToc" >42.1.1 <a
href="#x1-31100042.1.1" id="QQ2-1-318">Afterthought</a></span>
<br />  <span class="sectionToc" >42.2 <a
href="#x1-31200042.2" id="QQ2-1-319">Awakening Choice</a></span>
<br /> <span class="chapterToc" >43 <a
href="#x1-31300043" id="QQ2-1-320">Whirlpool Sanctuary</a></span>
<br /> <span class="chapterToc" >44 <a
href="#x1-31400044" id="QQ2-1-321">Whirlpool Robot Rebel</a></span>
<br /> <span class="chapterToc" >45 <a
href="#x1-31500045" id="QQ2-1-322">Whirlpool Robot Gladiator</a></span>
<br /> <span class="chapterToc" >46 <a
href="#x1-31600046" id="QQ2-1-323">Triangulum Wizard Apprentice</a></span>
<br /> <span class="chapterToc" >47 <a
href="#x1-31700047" id="QQ2-1-324">Reptilian Robot Army</a></span>
<br /> <span class="chapterToc" >48 <a
href="#x1-31800048" id="QQ2-1-325">Sirius</a></span>
<br /> <span class="chapterToc" >49 <a
href="#x1-31900049" id="QQ2-1-326">Whirlwind on Venus</a></span>
<br /> <span class="chapterToc" >50 <a
href="#x1-32000050" id="QQ2-1-327">Mammoth Hunter</a></span>
<br />  <span class="sectionToc" >50.1 <a
href="#x1-32100050.1" id="QQ2-1-328">Afterthought</a></span>
<br /> <span class="chapterToc" >51 <a
href="#x1-32200051" id="QQ2-1-329">Centurion, of the Roman Army</a></span>
<br /> <span class="chapterToc" >52 <a
href="#x1-32300052" id="QQ2-1-330">Flavius Arbogast 350–394CE</a></span>
<br /> <span class="chapterToc" >53 <a
href="#x1-32400053" id="QQ2-1-331">War Widow, approximately 550CE</a></span>
<br />  <span class="sectionToc" >53.1 <a
href="#x1-32500053.1" id="QQ2-1-332">Afterthought</a></span>
<br /> <span class="chapterToc" >54 <a
href="#x1-32600054" id="QQ2-1-333">The Pagan Castle, approximately 600 to 686CE</a></span>
<br />  <span class="sectionToc" >54.1 <a
href="#x1-32700054.1" id="QQ2-1-334">Christian Army at the Castle</a></span>
<br />  <span class="sectionToc" >54.2 <a
href="#x1-32800054.2" id="QQ2-1-335">Afterthought</a></span>
<br /> <span class="chapterToc" >55 <a
href="#x1-32900055" id="QQ2-1-336">approximately 900CE, near the Caspian Sea</a></span>
<br /> <span class="chapterToc" >56 <a
href="#x1-33000056" id="QQ2-1-337">approximately 1000CE, in Guge</a></span>
<br /> <span class="chapterToc" >57 <a
href="#x1-33100057" id="QQ2-1-338">approximately 1050CE, in the Khara-Khanid Khanate, as a muslim</a></span>
<br />  <span class="sectionToc" >57.1 <a
href="#x1-33200057.1" id="QQ2-1-339">living story</a></span>
<br />  <span class="sectionToc" >57.2 <a
href="#x1-33300057.2" id="QQ2-1-340">Afterthought</a></span>
<br /> <span class="chapterToc" >58 <a
href="#x1-33400058" id="QQ2-1-341">approximately 1100CE, in the Qocho Kingdom</a></span>
<br /> <span class="chapterToc" >59 <a
href="#x1-33500059" id="QQ2-1-342">approximately 1180CE, Song Dynasty</a></span>
<br /> <span class="chapterToc" >60 <a
href="#x1-33600060" id="QQ2-1-343">approximately 1680CE, English Pirate</a></span>
<br />  <span class="sectionToc" >60.1 <a
href="#x1-33700060.1" id="QQ2-1-344">Afterthought</a></span>
<br /> <span class="chapterToc" >61 <a
href="#x1-33800061" id="QQ2-1-345">approximately 1740CE, Blue miner</a></span>
<br /> <span class="chapterToc" >62 <a
href="#x1-33900062" id="QQ2-1-346">approximately 1780CE, Grey geneticists</a></span>
<br /> <span class="chapterToc" >63 <a
href="#x1-34000063" id="QQ2-1-347">approximately 1900CE, Grey kidnapper</a></span>
<br /> <span class="chapterToc" >64 <a
href="#x1-34100064" id="QQ2-1-348">1987CE to present-tense, Logan Streondj</a></span>
<br /> <span class="chapterToc" >65 <a
href="#x1-34200065" id="QQ2-1-349">2100CE or future lifetimes</a></span>
<br />  <span class="sectionToc" >65.1 <a
href="#x1-34300065.1" id="QQ2-1-350">Future Visions</a></span>
<br />   <span class="subsectionToc" >65.1.1 <a
href="#x1-34400065.1.1" id="QQ2-1-351">The Archivist</a></span>
<br />   <span class="subsectionToc" >65.1.2 <a
href="#x1-34500065.1.2" id="QQ2-1-352">Saving Planet Earth</a></span>
<br /> <span class="chapterToc" >66 <a
href="#x1-34600066" id="QQ2-1-353">What is the story of Green Buddhism?</a></span>
</div>
<!--l. 9--><p class="indent" >
</p>
<h1 class="partHead"><span class="titlemark">Part I<br /></span><a
id="x1-6000I"></a>Galaxy Domain Strategy</h1>
<h2 class="chapterHead"><span class="titlemark">Chapter 2</span><br /><a
id="x1-70002"></a>Origination</h2>
<div class="table">
<!--l. 7--><p class="indent" > <a
id="x1-70011"></a></p><hr class="float" /><div class="float"
>
<div class="tabular"> <table id="TBL-2" class="tabular"
cellspacing="0" cellpadding="0"
><colgroup id="TBL-2-1g"><col
id="TBL-2-1" /><col
id="TBL-2-2" /></colgroup><tr
style="vertical-align:baseline;" id="TBL-2-1-"><td style="white-space:nowrap; text-align:left;" id="TBL-2-1-1"
class="td11"> no colour </td><td style="white-space:nowrap; text-align:left;" id="TBL-2-1-2"
class="td11"> black </td></tr><tr
style="vertical-align:baseline;" id="TBL-2-2-"><td style="white-space:nowrap; text-align:left;" id="TBL-2-2-1"
class="td11"> no sound </td><td style="white-space:nowrap; text-align:left;" id="TBL-2-2-2"
class="td11"> quiet</td>
</tr><tr
style="vertical-align:baseline;" id="TBL-2-3-"><td style="white-space:nowrap; text-align:left;" id="TBL-2-3-1"
class="td11"> no emotion </td><td style="white-space:nowrap; text-align:left;" id="TBL-2-3-2"
class="td11"> content </td></tr><tr
style="vertical-align:baseline;" id="TBL-2-4-"><td style="white-space:nowrap; text-align:left;" id="TBL-2-4-1"
class="td11"> no motion </td><td style="white-space:nowrap; text-align:left;" id="TBL-2-4-2"
class="td11"> stopped</td>
</tr><tr
style="vertical-align:baseline;" id="TBL-2-5-"><td style="white-space:nowrap; text-align:left;" id="TBL-2-5-1"
class="td11"> no number </td><td style="white-space:nowrap; text-align:left;" id="TBL-2-5-2"
class="td11"> zero </td>
</tr><tr
style="vertical-align:baseline;" id="TBL-2-6-"><td style="white-space:nowrap; text-align:left;" id="TBL-2-6-1"
class="td11"> no temperature </td><td style="white-space:nowrap; text-align:left;" id="TBL-2-6-2"
class="td11"> zero kelvin </td>
</tr><tr
style="vertical-align:baseline;" id="TBL-2-7-"><td style="white-space:nowrap; text-align:left;" id="TBL-2-7-1"
class="td11"> no feeling </td><td style="white-space:nowrap; text-align:left;" id="TBL-2-7-2"
class="td11"> frozen </td>
</tr><tr
style="vertical-align:baseline;" id="TBL-2-8-"><td style="white-space:nowrap; text-align:left;" id="TBL-2-8-1"
class="td11"> </td></tr></table></div>
<br /> <div class="caption"
><span class="id">Table 2.1: </span><span
class="content">Attributes of Nothing</span></div><!--tex4ht:label?: x1-70011 -->
</div><hr class="endfloat" />
</div>
<dl class="enumerate"><dt class="enumerate">
0. </dt><dd
class="enumerate">In the begining there was nothing (Table <a
href="#x1-70011">2.1<!--tex4ht:ref: nothing --></a>). Zero.
</dd><dt class="enumerate">
1. </dt><dd
class="enumerate">Then there was Not nothing. NOT the first activity.
</dd><dt class="enumerate">
2. </dt><dd
class="enumerate">Afterwards there was not And nothing. AND the second
activity.
</dd><dt class="enumerate">
3. </dt><dd
class="enumerate">Conditional activites appeared.
</dd><dt class="enumerate">
4. </dt><dd
class="enumerate">The base cosmos grew more complex.
</dd><dt class="enumerate">
5. </dt><dd
class="enumerate">Geometry developed.
</dd><dt class="enumerate">
6. </dt><dd
class="enumerate">With shapes, there were enough bodies for social experience.</dd></dl>
<h3 class="sectionHead"><span class="titlemark">2.1 </span> <a
id="x1-80002.1"></a>Soul World</h3>
<!--l. 31--><p class="noindent" >The soul world is in the base cosmos, or close to it. There we with you
float around as balls of light in geometric forms — This is verifiable via
life-between-lives regression hypnotherapy[<a
href="#X0-newtins">23</a>][<a
href="#X0-newton2000destiny">19</a>]
</p><!--l. 36--><p class="indent" > Eventually we with you got bored of floating around in base cosmos,
and decided to create new and more complex cosmos. After some “time”,
we with you created the galaxy cosmos, where you are reading this
text.
</p><!--l. 41--><p class="indent" > When we with you reincarnate in this complex galaxy cosmos, just as
when you are playing virtual computer sports, a part of you stays in one
world, and a part of you dips into another.
</p><!--l. 45--><p class="noindent" >
</p>
<h3 class="sectionHead"><span class="titlemark">2.2 </span> <a
id="x1-90002.2"></a>String Theory</h3>
<!--l. 47--><p class="noindent" >String Theory, or M-theory is a set of beautifully simple math formulas
which is also compatible the galaxy cosmos.
</p><!--l. 50--><p class="indent" > As Creation became more and more complex, eventually it stumbled
upon string theory, and started expanding on it, so our galaxy cosmos
came about. I say we with you created it, because we with you are all
a part of Creation, the same Creation that created the galaxy
cosmos.
</p><!--l. 55--><p class="noindent" >
</p>
<h3 class="sectionHead"><span class="titlemark">2.3 </span> <a
id="x1-100002.3"></a>Time Complexity</h3>
<!--l. 57--><p class="noindent" >On Earth time is traditionally measured by the orbital characteristics of
the planet, though measuring by atomic decay is also available.
</p><!--l. 60--><p class="indent" > In Creation, ‘time’ is measured by complexity. So if nothing
happened at complexity 0, then Not nothing happened at complexity 1,
’1’ happened at complexity 2, and so on.
</p><!--l. 64--><p class="indent" > Pegasus time-machine experiments show inconsistent results when
sending people multiple times to the same time/place.
</p><!--l. 67--><p class="noindent" >
</p>
<h4 class="subsectionHead"><span class="titlemark">2.3.1 </span> <a
id="x1-110002.3.1"></a>Entropy Horizon</h4>
<!--l. 69--><p class="noindent" >If you go far ahead enough in time, then you’ll inevitably come across a
cataclysmic event that makes things simpler. This is the entropy
horizon or ‘bleeding edge’ of the universe. Ironically enough, if you
just wait some time, and then go back to the same time-place it
may not be in a state of cataclysm but a continuation, because
Creation has accrued enough entropy to know how to avoid the
cataclysm.
</p><!--l. 76--><p class="indent" > This may be why there are many people that seemingly prophesize
end-times, which never come to pass. Because we generally don’t live at
the bleeding edge, so things have enough time to resolve themselves
before we get there.
</p><!--l. 80--><p class="indent" > It’s not that those prophets were inaccurate, at the time-complexity
they said it in, it may have been correct, but after a certain amount of
time-complexity passes it ceases to be correct.
</p><!--l. 84--><p class="indent" > It is similar to how it is near impossible for someone to go to the
future, get a listing of historical stock prices, then go back in time and
get super rich. While it may work on a short-term time-hop, it is less
likely to work the farther ahead you go, due to the complexity
changes.
</p>
<h2 class="chapterHead"><span class="titlemark">Chapter 3</span><br /><a
id="x1-120003"></a>Mission</h2>
<!--l. 3--><p class="noindent" >As with computer sports, there is often a mission to measure
success.
</p>
<h4 class="subsectionHead"><span class="titlemark">3.0.1 </span> <a
id="x1-130003.0.1"></a>What is your private mission?</h4>
<!--l. 7--><p class="noindent" >We with you, in the soul world, with the help of our friends and
professors, analyze our lives, and see where we can improve. Then we set
those as various purposes for reincarnating, so we with your private
mission is educational.
</p>
<ul class="itemize1">
<li class="itemize">Do you remember what your purposes for reincarnation were?
</li>
<li class="itemize">Do you know what your private mission is?
</li>
<li class="itemize">Some theta-brainwave (from 4hz til 8hz) mind administration
(meditation) can help you answer those questions.</li></ul>
<!--l. 18--><p class="noindent" >
</p>
<h4 class="subsectionHead"><span class="titlemark">3.0.2 </span> <a
id="x1-140003.0.2"></a>What is our public mission?</h4>
<!--l. 20--><p class="noindent" >Our public mission, is to continue as our ancestors, that created the
galaxy world for more complex bodies and educational ecology.
</p><!--l. 24--><p class="indent" > The mission of Green Buddhism, is to grow the number, diversity
and complexity of bodies and ecologies in the galaxy cosmos.
</p><!--l. 27--><p class="indent" > If that is compatible with your private mission, or you can ration
some time or resources for the public mission, we would love your
help.
</p><!--l. 31--><p class="noindent" >
</p>
<h4 class="subsectionHead"><span class="titlemark">3.0.3 </span> <a
id="x1-150003.0.3"></a>Initial Steps</h4>
<!--l. 33--><p class="noindent" >To understand the initial steps, it is best to tell the history of this
galaxy, and it’s neighbours.
</p><!--l. 36--><p class="indent" > Note that while much of the galaxy’s history is public information, it
is also secret for various reasons. There is disinformation activity, to
allow you to have a more deep dip into your private mission, and living
here on Earth.
</p>
<h2 class="chapterHead"><span class="titlemark">Chapter 4</span><br /><a
id="x1-160004"></a>History</h2>
<div class="epigraph">Those who cannot learn from history are doomed to repeat
it.<hr />
<div class="episource">George Santayana</div></div> <span class="fbox"><span
class="eccc1000-"><span
class="small-caps">t</span><span
class="small-caps">r</span><span
class="small-caps">i</span><span
class="small-caps">g</span><span
class="small-caps">g</span><span
class="small-caps">e</span><span
class="small-caps">r</span> <span
class="small-caps">a</span><span
class="small-caps">l</span><span
class="small-caps">a</span><span
class="small-caps">r</span><span
class="small-caps">m</span><span
class="small-caps">:</span> </span>this chapter discusses
extraterrestrials.<br
class="newline" />If apprehensive you could read Chapter <a
href="#x1-330005">5<!--tex4ht:ref: peace --></a> instead. </span>
<!--l. 15--><p class="indent" > While titled history, this chapter is to help establish an understanding of
circumstances in our solar system and galaxy.
</p><!--l. 18--><p class="indent" > In Buddhism we choose awareness of present-tense, thus history helps
understand the present-tense.
</p>
<h3 class="sectionHead"><span class="titlemark">4.1 </span> <a
id="x1-170004.1"></a>Fermi Paradox</h3>
<!--l. 22--><p class="noindent" >The Fermi Paradox states how there are many stars in the galaxy, many
of them likely have Earth like planets, so almost certainly there are other
extraterrestrial civilizations in our galaxy.
</p><!--l. 26--><p class="indent" > Having many genuses available for reincarnation is aligned with the
purpose of the galaxy cosmos.
</p><!--l. 29--><p class="indent" > While there are some philosophical answers as to why there is no
official speech about other alien civilizations. There is only one answer
which has many thousands of supporters and documentation — that
they are here but not officially.
</p><!--l. 34--><p class="indent" > For a long time, Earth was officially the centre of the galaxy
cosmos. Those who believed otherwise, were punished — such as
Galileo.
</p><!--l. 37--><p class="indent" > Most tipsters exposing government hiding knowledge have been much
less fortunate than Edward Snowden.
</p><!--l. 40--><p class="noindent" >