-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1163 lines (968 loc) · 73.5 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
<!DOCTYPE html>
<!-- Dedicated to the Star Within Us All... -->
<!-- This Great Work, was originally written by the Chief Nuchwezi Cyber-Shamman,
Arch. Nemesis Fixx, JWL and Fra. Mugasha, among others.
It's true origins are obscure and clouted in mind-bending mystery, but the simpler story is that,
One time, while approaching the end of my visit, at a techish monastery somewhere in Addis/Bole, Ethiopia,
I performed a spiritual experiment in which I attempted contact with the Ancient Ones. O did they listen!
This work is the result, and I have decided to dedicate the rest of my life, to fully develop the concept of what
I was shown, unto the point it shall realize it's full potential, which by then, this should be one of man's Greatest Gifts
from The Ancient Ones.
O, Ohm.
-->
<html lang="en">
<head>
<title>Virtual SHRINE</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="vendor/jquery/js/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js">\x3C/script>')</script>
<script src="js/spirit.js"></script>
<script src="js/jquery.qrcode.js"></script>
<script src="js/qrcode.js"></script>s
<link type="text/css" rel="stylesheet" href="css/expression.css" />
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/581368ebcfdf421cf9799775/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
</head>
<body>
<section class="container-fluid col-sm-10 col-sm-offset-1">
<section id="header">
<h1>
<span class="banner">Virtual SHRINE </span> <small>the Internet Shrine & utilities for spiritual explorers</i>
</h1>
</section>
<section id="content">
<!-- nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#shrine" aria-controls="shrine" role="tab" data-toggle="tab">SHRINES</a></li>
<li role="presentation"><a href="#school" aria-controls="school" role="tab" data-toggle="tab">SCHOOL</a></li>
<li role="presentation"><a href="#labs" aria-controls="labs" role="tab" data-toggle="tab">LABS</a></li>
<li role="presentation"><a href="#community" aria-controls="community" role="tab" data-toggle="tab">COMMUNITY</a></li>
<li role="presentation"><a href="#consult" aria-controls="consult" role="tab" data-toggle="tab">CONSULT</a></li>
<li role="presentation"><a href="#about" aria-controls="about" role="tab" data-toggle="tab">ABOUT</a></li>
</ul>
<!-- end nav tabs -->
<!-- tab content -->
<div class="tab-content">
<!-- tab-shrine -->
<div role="tabpanel" class="tab-pane fade in active" id="shrine">
<div class="panel-group" id="accordion-shrine" role="tablist" aria-multiselectable="true">
<!-- panel: shrine-intro -->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="heading-shrine-intro">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion-shrine" href="#collapse-shrine-intro" aria-expanded="true" aria-controls="collapse-shrine-intro">
Introduction
</a>
</h4>
</div>
<div id="collapse-shrine-intro" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading-shrine-intro">
<div class="panel-body introduction">
<p>
<b>In the beginning, there was No Light. And then, out of the Darkness, emerged The Light.</b>
</p>
<p>Welcome to the Nu Chwezi Shrines (of Hidden Truths). Here, you can do a whole range of "occult" things, some more advanced/involved than others; execute or augement rituals (especially astral), utilize the dialogue as a communion amplifier during evocations or invocations, indulge your religious function, deify things and leverage that power, explore artificial god-forms you create or adapt, fuck around, explore your unconscious mind, seed intuition, interact with your inner daemon (genius/HGA), etc...</p>
<hr/>
<p>
<b>NOTE:</b>
<ul>
<li>This is not just another experiment in <b>Technomancy</b>; real rituals, casting of spells, divination and more, have already taken place here, and results have been adequately documented as proof.</li>
<li style="color:#eee">Most likely, you'll NEED a GOOD WEB BROWSER. At the moment, we would recommend Google Chrome and Firefox. Try using an updated version, as we keep leveraging progressive features, and we definitely don't support outdated browsers.</li>
<li>You don't have to go to Church to get to know your God-forms. You don't even have to meet them at our Shrines either, but we'd love to help you leverage technology to do so.</li>
<li><input type="checkbox" id="music_switch" title="Uncheck to use shrines without song" class="check-switch" /> <b>MUSIC matters</b> - But, if you'd rather die of boredom while communing, turn off the music NOW </li>
<li><input type="checkbox" id="fire_switch" title="Uncheck to have silent flames on your altar" class="check-switch" checked /> You may uncheck this, to silence the flames too... </li>
<li><input type="checkbox" id="god_cipher_off_switch" title="You rather read Satan's message clearly?" class="check-switch" /> Want to read AI directly?</li>
<li><input type="checkbox" id="solve_anagrams" title="Want gods us to solve the anagrams for you?" class="check-switch" /> We can help you solve the cryptic anagrams too! Though, this limits divination to English, and well... until when we've finished building a purely client-side quantum-anagram brain, currently, using this feature has to interface with the Nuchwezi Anagram Brain -- https://anagrams.cwezi.rocks</li>
<li>There are more controls below the shrine... like those for session recording (all-local, nothing sent to our servers or anywhere else)</li>
<li>There are easter-eggs! E.g. feign or make real offerings thus: <i>I offer to you <b>my talents</b></i></li>
<li><b>Around here, and typically elsewhere, talking with god-forms is like deciphering chaos or reading your unconscious</b>. We use randomness to seed these messages, but interpretation is a consequence of your baises and wisdom... Though, better than reading bones, stones and dice, our technique is a lot like aided-divination, and will perform much realibly than many classical/traditional methods, even for neophytes.</li>
<li>Don't fool with the Elders.</li>
<li>We are not a Church, We are not a Religion. <b>We Are a School of Mysteries.</b></li>
</ul>
</p>
</div>
</div>
</div>
<!-- end panel: shrine-intro -->
<!-- panel: shrine-media -->
<div class="panel panel-default" id="panel-shrine-media">
<div class="panel-heading" role="tab" id="heading-shrine-shrine-media">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion-shrine" href="#collapse-shrine-shrine-media" aria-expanded="true" aria-controls="collapse-shrine-shrine-media">
SHRINE MEDIA
</a>
</h4>
</div>
<div id="collapse-shrine-shrine-media" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading-shrine-shrine-media">
<div class="panel-body highlight-1">
<div class="youtube video">
<center>
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/uYPhh038OVs" frameborder="0" allowfullscreen></iframe>
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/71jhdhE5ol0" frameborder="0" allowfullscreen></iframe>
</center>
</div>
</div>
</div>
</div>
<!-- end panel: shrine-media -->
<!-- panel: default-shrine -->
<div class="panel panel-default" id="panel-shrine">
<div class="panel-heading" role="tab" id="heading-shrine-shrine">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion-shrine" href="#collapse-shrine-shrine" aria-expanded="true" aria-controls="collapse-shrine-shrine">
THE SHRINE
</a>
</h4>
</div>
<div id="collapse-shrine-shrine" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="heading-shrine-shrine">
<div class="panel-body">
<!-- shrine -->
<div>
<div class="panel">
<div class="panel-body shrine-body" title="If you need to see the history, ensure you turn ON the recording, and then check the logs">
<div class="shrine default god-GOD action-DEFAULT" data-god="GOD" data-action="DEFAULT">
<div class="cipher">GOD HAS GRANTED U A POWER USE IT</div>
</div>
</div>
<div class="panel-footer shrine-footer">
<div class="row">
<div class="col-sm-offset-1 col-sm-10">
<div class="input-group input-group-lg">
<div class="input-group-btn">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="chosen">COMMUNE</span> <span class="caret"></span></button>
<ul data-shrine="default" data-choose="shrine-default-action" class="choose-list dropdown-menu">
<li><a href="#">COMMUNE</a></li>
<li><a href="#">DIVINE</a></li>
</ul>
</div><!-- /btn-group -->
<input data-shrine="default" type="text" class="shrine-in form-control" placeholder="Speak what's on your mind... press enter, to send." aria-label="...">
<div class="input-group-btn">
<button title="Ancient Intelligence and Artificial Intelligence" type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="chosen" title="Ancient Intelligence and or Artificial Intelligence">AI</span> <span class="caret"></span></button>
<ul id="gods-list" data-shrine="default" data-choose="shrine-default-god" class="choose-list dropdown-menu dropdown-menu-right">
<li><a href="#"><input id="spirit" type="text" /><span id="spirit_name"></span></a></li>
<li role="separator" class="divider-title">ILLUMINATI PANTHEON</li>
<li><a href="#">DAEMON</a></li>
<li><a href="#">BAPHOMET</a></li>
<li><a href="#">I</a></li>
<li role="separator" class="divider"></li>
<li role="separator" class="divider-title">RITE PANTHEON</li>
<li><a href="#">ADONAI</a></li>
<li><a href="#">TAHUTI</a></li>
<li><a href="#">NYAMIYONGA</a></li>
<li><a href="#">SET</a></li>
<li><a href="#">KITARA</a></li>
<li><a href="#">YEHESHUA</a></li>
<li role="separator" class="divider"></li>
<li role="separator" class="divider-title">CROWN PANTHEON</li>
<li><a href="#">CERTAIN</a></li>
<li><a href="#">LUCIFER</a></li>
<li><a href="#">LEVIATAN</a></li>
<li><a href="#">BELIAL</a></li>
</ul>
</div><!-- /btn-group -->
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
</div>
<!-- end row: shrine input-->
<br/>
<!-- row: shrine controls -->
<div class="row">
<div class="col-sm-offset-1 col-sm-10">
<div class="btn-group btn-group-sm" role="group" aria-label="...">
<button type="button" id="btn-toggle-shrine-music" class="btn btn-warning" title="change the active music in this shrine"><i class="fa fa-music"></i></button>
<button type="button" id="btn-mute-shrine" class="btn btn-default" title="(un)mute sounds in the shrine"><i class="fa fa-volume-up"></i></button>
</div>
<div class="btn-group btn-group-sm" role="group" aria-label="...">
<button type="button" id="btn-shrine-record" class="btn btn-default" title="locally record your shrine transactions, so you can later download these for further analysis"><i class="fa fa-circle-o"></i></button>
<button type="button" id="btn-shrine-records" class="btn btn-success" title="click to download your recorded transactions at the shrine, into a local file"><i class="fa fa-download"></i></button>
<button type="button" id="btn-clear-shrine-records" class="btn btn-default" title="click to clear all the shrine transaction logs"><span class="text-danger"><i class="fa fa-eraser"></i></span></button>
</div>
<div class="btn-group btn-group-sm" role="group" aria-label="...">
<button type="button" id="btn-enable-gematria" class="btn btn-default" title="enable gematria (Kaballa)"><i class="fa fa-calculator"></i></button>
</div>
<div class="btn-group btn-group-sm" role="group" aria-label="...">
<button type="button" id="btn-enable-fullscreen" class="btn btn-default" title="use shrine in fullscreen mode"><i class="fa fa-arrows-alt"></i></button>
</div>
<!-- hidden modal for showing shrine recordings -->
<div id="modal-shrine-records" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="records-modal-label">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="records-modal-label">SHRINE RECORDS</h4>
</div>
<div id="shrine-records" class="modal-body">
</div>
</div>
</div>
</div>
<!-- end hidden modal for showing shrine recordings -->
</div>
</div>
<!-- end row: shrine controls-->
<!-- vcodes -->
<br/>
<div class="row">
<div class="col-md-4 vcode-item">
<div class="qrcode-c 0"></div>
</div>
<div class="col-md-4 vcode-item">
<div class="qrcode-c 1"></div>
</div>
<div class="col-md-4 vcode-item">
<div class="qrcode-c 2"></div>
</div>
</div>
<!-- end vcodes -->
</div>
</div>
</div>
<!-- end shrine -->
</div>
</div>
</div>
</div>
<!-- end panel: default-shrine -->
</div>
<!-- end tab-shrine -->
<!-- tab:school -->
<div role="tabpanel" class="tab-pane fade" id="school">
<div class="panel-group" id="accordion-school" role="tablist" aria-multiselectable="true">
<!-- panel: school-intro -->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="heading-school-intro">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion-school" href="#collapse-school-intro" aria-expanded="true" aria-controls="collapse-school-intro">
Introduction
</a>
</h4>
</div>
<div id="collapse-school-intro" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="heading-school-intro">
<div class="panel-body introduction">
<p>Yes, it is TRUE (and also NOT true), that The Dead and the Living, No Matter where they are in space or time, can commune with you, via this simple and beautiful technology called the Nuchwezi Esoteric Shrine-School. The spirits - whether of fire, earth, air or water; whether of darkness or light; whether of the past, present or the future, doesn't matter. You can talk with it, observe and record that information for analysis and further action,
right from here. Relax. Enjoy it. Share it. Believe it. Peace and Love to all Mankind... The Observers of God's Perfect Work.</p>
<p><b>To get started with your [ever][first] INVOCATION, merely will, choose, write and press enter.Then go ahead, invite the spirit to the shrine, by activating the invocation with a simple action - click and select the spirit. Then start talking to the spirit. It MUST RESPOND - soon, and ALWAYS!</b><p>
<p>I know a very basic, and immediate, almost universal need for this sort of technology - communing with the "dead" - Necromancy or rather, Divination. Which is the highest form of Magick possible - reading God's Mind.</p>
<p>I dedicate this innovation to all Africa/Humanity. Let's keep creating and observing... TOGETHER.</p>
<p>
The School is called <b>Nuchwezi Esoteric School</b>, and we are currently located in <b>Uganda, East Africa</b>. But, online, this is where the true seeker can be led to wisdom undefiled; about how to learn and practice magick on their own. We give special focus to black magick, witchcraft, shamanism and the other more serious paths. We have pioneered the exploration of Technomancy in many areas of practical magick, and continue to push the boundaries
of what's possible. Serious students might also get a chance to contact our adepts, for a chance to get mentored, or even get evaluated for initiation into one of a couple of Esoteric Orders we work with.
</p>
<hr/>
<p>Beware...
<ul>
<li>We don't sell memberships.</li>
<li>We seek excellence in practical magick.</li>
<li>We especially are heavy with ritual magick.</li>
<li>Our role is to provide the catalyst - yours to react.</li>
<li>We desire to help you find the key...</li>
<li>We are progressive, and champion the ethos of Chaos Magick.</li>
<li>We don't share the details of our students or affilliates with outsiders.</li>
<li>We welcome the bold and fearless.</li>
<li>We shun ignorance, stupidity and shallow intellects.</li>
<li>Not all adepts are academics. We have a place for raw talent.</li>
<li style="color:crimson"><b>We DON'T BREAK THE RULES - We merely Create Nu Ones. We Teach creativity, not destruction. Order under Chaos.</b></li>
</ul>
</div>
</div>
</div>
<!-- end panel: school-intro -->
<!-- panel: school-first-principles -->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="heading-school-first-principles">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion-school" href="#collapse-school-first-principles" aria-expanded="true" aria-controls="collapse-school-first-principles">
FIRST PRINCIPLES (of Pragmatic Magick)
</a>
</h4>
</div>
<div id="collapse-school-first-principles" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading-school-first-principles">
<div class="panel-body first-principles">
<h2>The NUCHWEZI ESOTERIC SCHOOL (NES) presents <b>The First Principles</b></h2>
<p>This section won't offer you a full curriculum into the mysteries, nor a total grasp of magick or the other occult arts, but will try to give enough primers and general principles to inspire you to seek further, so you can start making sense of the more arcane stuff elsewhere.</p>
<hr/>
<p>The following are well known to most initiates, but for those new to these arts and sciences, here are some potent principles to get started with:
<ul style="font-size:16px">
<li>Magick doesn't work. Your Magick, is what works!</li>
<li>Faith is fundamental, it's the tool.</li>
<li>Magick Works. Fail to Acknowledge it when it does, and <b>you just might loose it all!!</b></li>
<li>The subjective universe is more important, is a part of the absolute cosmos, and shapes it as well.</li>
<li>A thing holds as much power relative to you, as your subconscious and the collective unconcious attributes to it - you might not always be able to reason away such power, no matter what.</li>
<li>Attention offered a thing, confers power upon it.</li>
<li>The imagination is infinitely more powerful than reason.</li>
<li>What exists for your mind, exists palpably for you.</li>
<li>Magick works. That doesn't mean you understand how it works.</li>
<li>As Above, So it is Below. Only fools underestimate the power of symbols.</li>
<li>Words manifest thoughts, which manifest things in the psyche, which influence the cosmos.</li>
<li>Symbols carry all the power the psyche needs to manifest the power they represent.</li>
<li>Tools are merely extensions of the operator's mind. Technology is a valid, and sometimes more convinient extension of a creative magician's mind.</li>
<li>Magick is like fire - you can cook food with it, but can also get burnt by it. Respect the Archetypes.</li>
<li>Nothing is True. Everything is permitted.</li>
<li>You can't cause change by wishing, only by desiring, willing, and acting. Seek, Dare, and Act.</li>
<li>If you can perfect your fantasy, it will become reality as a must.</li>
<li>All the power lies in you - already. Damn, do the magick yourself!</li>
<li>If you can, spend time around little kids as they play and explore unhindered - you'll meet the best living mages, and be inspired beyond what you might be able to find anywhere else. Most of all, attempt to reanimate the child within you.</li>
<li>The unconscious creates, the conscious edits.</li>
<li>Reading books can only seed you with ideas - never can it get you the actual results. Only by putting things into context, adapting and even breaking/bending the rules to your own style and inclinations, can you tap into the potent stream that others deem to be tradition. Improvisation, experiment and persistence - kicking out what doesn't work soon as you find it to be rubbish.</li>
</ul>
</p>
<hr/>
<p>And then, we have the following extra principles, that are key to understanding or leveraging the sort of magick that empowered our predecessors, The Chwezi (BaChwezi), who were not only eminent in magick, but were overall more creative and superior than any other tribal/ethnic group they came into contact with:
<ul style="font-size:16px">
<li>You might not acknowledge it, but you possess schisms in your psyche - it's a feature.</li>
<li>The aliens that matter the most, are the kind that can be evoked or invoked before or into the psyche. Thus the importance of familiarization and using proper symbolism</li>
<li>Finding or rather, identifying, and then working with your inner daemon/genius/HGA/HGD/Djinni... is a critical step in the pursuit of true, higher attainment - the domain doesn't matter.</li>
<li>To a lesser or greater extent, everyone is possessed by something other than what they regard to be their "self" - again, this can be approached as a feature, and this is what lays the foundation for working with the <b>magick of possession</b>, as practiced by the Chwezi before us, and all other eminent systems of the kind worldwide.</li>
<li><i>Something specific, lurks within and transcends "you" - coming into possession of this other, transcendental self, is the key to this work.</i></li>
</ul>
<p>Finally, assuming you were to abandon all the other principles (above), and just stick to a single, most potent, most pragmatic, most modern principle, which one would that be? At NES, we would most likely propose the following...
<ul style="font-size:16px">
<li><b>Acknowledge your unconscious mind, and then work with it, not against it.</b></li>
</ul>
<hr/>
<p>The burden of proving the credibility, utility and efficaciousness of these principles lies solely on you - the aspiring seeker or student of the black wisdom. Practice and proper alignment will make most, if not all of these, self-evident. It's mostly a speculative, but definitely verifiable craft that we profess.</p>
<p>These things will get you very far...</p>
</div>
</div>
</div>
<!-- end panel: school-first-principles -->
<!-- panel: school-shrine-technology -->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="heading-school-shrine-technology">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion-school" href="#collapse-school-shrine-technology" aria-expanded="true" aria-controls="collapse-school-shrine-technology">
TECHNOMANCY & OUR SHRINE TECHNOLOGY
</a>
</h4>
</div>
<div id="collapse-school-shrine-technology" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading-school-shrine-technology">
<div class="panel-body shrine-technology">
<p>
I will dive here, into how the Shrine Technology itself works. This is so, such that others (and not just those who've asked privately), can begin to understand how to leverage this amazing esoteric tool for real-life practical magick.
Below, I quote verbatim, a response to a request by a member on this community..
</p>
<hr/>
<h2>The Problem</h2>
<p>
I have interest in exploring, and experimenting with this tool you have shared. The concept of technomancy is fascinating to me, and I agree with the principles behind the theory...
I have run into an obstacle, however, in that I am unsure how to decrypt the cipher used on the website provided....
Are you willing to share a good way to begin the decryption?
</p>
<hr/>
<h2>The Answer</h2>
<p>That's what is required - the openness to explore and learn.</p>
<p>Am much willing to help you get as much out of this shrine as we've already done and documented in our own workings.</p>
<p><strong style="color:white">How the Shrine Works</strong></p>
<p>The first step is to understand how this shrine works. Let me give you a basic breakdown of the mode called "Communion".</p>
<ol>
<li>You select an altar (there are several to pick from, though, you can work in the default altar for archetypes/deities not listed)</li>
<li>As with any altar, at which you intend to perform some serious work, you would do well to have the necessary state of mind - this you can do by placing yourself in a receptive mode (more on this later), being friendly and or welcoming to the deity or archetype you desire to work with (best done by immersing yourself in the symbolism presented for that deity in the specialized altars, or what your practice inspires in your mind). </li>
<li>Typically, we begin each session with a greeting - HAILING is a common formula.</li>
<li>To send your message to the being, you compose it in your mind, and then type it out in the provided prompt below the altar, after which, you press the RETURN or ENTER key, which fires it off. </li>
<li>Whenever you issue a message to the deity, you words will rise from the bottom, rising with the flames, and settle somewhere near the top of the altar, hovering above the flames, and there, will burn out slowly, till they are absorbed into the ether. Essentially, what's happening is that your message has been dispatched from your mind to the target being, and the visual depiction on the screen is but a visual echo of this process.</li>
<li>If you are in communion mode (the other being the divining/channeling mode), a little while after your message is dispatched, a response comes scrolling down the altar, to finally settle where the flames are. This descending message is the encoded response from the entity you are working with.</li>
<li>By default, the shrine applies a cipher to each particular altar, so that those not initiated are kept in the dark until they do a little more work. But, outside this little veil, you can have the messages from your target being come to you in plain-text -- as permutations of English letters. To enable this, Click the "Introduction" tab just above the altar, and ensure to check the flag labelled "Want to read God's mind directly?"</li>
<li>Once you can read the clear-text of the response, then comes the deciphering step. </li>
</ol>
<p>Before I get to the deciphering, it might help for you to understand how the messages you obtain via the shrine come to be composed. The process is a little bit more technical than I will tell you here, but for those with some understanding of algorithms, looking at the source code of the shrine should make most of the mechanics clear. In general, the shrine uses the following general principles of communion with the abstract or ethereal:</p>
<ul>
<li>It's possible to commune with anything - including animate and inanimate beings.</li>
<li>Under any circumstances, it's possible to evoke messages into the subconscious, which <em>possibly</em> originate from any entity the operator establishes rapport with (what's guaranteed is the reception of a response, what's not certain, is that the response originates from the target entity).</li>
</ul>
<p><strong style="color:white">Some General Principles of Divination</strong></p>
<p>Further, there are some general principles of divination that would greatly come to aid when trying to work with the cryptic messages and the process used on this shrine. The principles are:</p>
<ul>
<li>All divination involves attempting to evoke from the subconscious, some meaning of otherwise random or arbitrary symbolism often depicted via a fixed alphabet or symbol set (Tarot deck, tea leaves, yarrow sticks, dice, letters from a book, cloud formations, bird song patterns, etc)</li>
<li>What's most important in all divination techniques, is the leveraging of intuition, and less reliance on reason or objective information. When a message is apparent in a divination pattern, the prepared reader will find it, no matter what their background or method is. </li>
<li>The best divination messages are obtained when the generation or evocation of these divination patterns involves as little involvement or bias from the reader as possible, and when the composition of these patterns is relatively random - the bias best left to forces without or the target of the divination itself.</li>
</ul>
<p><strong style="color:white">Generation of Messages on The Shrine</strong></p>
<p>With the above principles in mind, I can then attempt to explain in detail, how the response to your prompt at the altar comes about, and how you eventually obtain the real message:</p>
<p>First, how the random message comes to be composed on the altar...</p>
<ol>
<li>A list of random integers is elicited from the atmosphere via the publicly accessible service - Random.org. </li>
<li>The size of this list is stochastic, but is upper-bound by 9 - meaning, up to a maximum of 9 random integers could be requested from the random source.</li>
<li>Furthermore, the random source itself is further constrained to return integers within the range 0 and an upper-bound determined by the size of the alphabet from which the messages are to be composed. This alphabet is what we call the "god alphabet", as it's from this alphabet that divined messages are to be composed. </li>
<li>The god alphabet itself is composed of letters from the English alphabet, with the special care taken to expand the alphabet so that there's useful redundancy - meaning, the alphabet is not just the 26 letters of the ordinary alphabet, but is instead a set of letters, generated stochastically based on the relative frequency of each letter in the English language. The probability distribution utilized in this process is one we obtained from a scientifically proven stochastic model of the English language - a model peer reviewed by linguists. Definitely, other models could be used, but currently, work with what we provide.</li>
<li>After we have this expanded alphabet, we then apply some extra operation on it, to introduce further randomness, the aim being to have a random list of letters from which we can randomly draw, but with the guarantee that the letters have been randomly distributed througout the list, so that the number of occurrences of a letter corresponds to the relative frequency of the letter in the English alphabet, but that its location in the list is random. This is done by randomly shuffling the expanded god alphabet ahead of a reading.</li>
<li>So, when the random source returns the list of integers, e.g [45,1,996], each of those entries is an index to be used to lookup a letter in the expanded, randomised god alphabet. So, it's possible that the above example could map to the entries: ["e","t","v"].</li>
<li>When we have the mapping from letter-indices to letters in the god alphabet, then we can compose them into a phrase, such as "etv", which phrase is then displayed on the altar for you to decipher.</li>
</ol>
<p><strong style="color:white">The Esoteric Techniques of Decoding These Messages</strong></p>
<p>Next, comes the esoteric part of "reading" the encoded message:</p>
<p>Basing on principles of divination, you take the given encoded or cryptic message, such as "etv" above, and then try to leverage your intuition/subconscious and some application of reason (especially a consideration of the context in which the answer was obtained - e.g what question was asked to evoke that response?), and then you begin to compose potential decoding of the message, eventually settling for what "feels" to be the most acceptable meaning or message.</p>
<p>An example might help. </p>
<p>Assuming I were inside of Lucifer's shrine, and then sent the following question to that being: </p>
<p><strong>Q</strong>: Am feeling confused this morning, I need help on how best to use my time this morning. Any clues?</p>
<p><strong>A</strong>: etv</p>
<p>--</p>
<p><em>Potential decodings</em></p>
<p><em>eTV</em>: e TV > see TV, be TV, get to the TV > go watch TV for some ideas</p>
<p><em>evt</em>: event > "indeed, this wont be an eventful morning, there's nothing to do about it", "there's a big event coming up, why not get ready for it?", etc</p>
<p><em>vet</em>: "go to the vet doctor", "there's things you need to review, why not do it this morning?", etc</p>
<p>As you can see, the deciphering process typically starts with trying to obtain as many permutations of the given code as possible. It's by shuffling the letters in the given message, that you might easily start to see what response there might be in the code. This is useful, but not necessary. There have been many instances in our own experimentation with this technique, in which the response obtained was so explicit, there was no need to even alter the order of the generated message so as to decipher it. But, do what you feel - your intuition is meant to be your guide here, not mere reason.</p>
<p>Also, as I've indicated before, the process here depends so much on having good rapport with the entity being communed with, and also leveraging what your inner-self says the clues in the message point to. </p>
<p>The easiest way to learn and master using this divinatory process is by comparing it to the traditional techniques of Bibliomancy - the elliciting of inspired messages from books or written text, some of which methods merely use evoked bias to pick either letters, words or whole phrases from the source material, and then applying intuition, context and inspiration to the composition and deciphering of the generated message. </p>
<p>Having this elaborate background and insights, you should find yourself readily exploring this shrine technology, working with the various entities having altars there, and getting much information and knowledge from these interactions.</p>
<p>For the skeptic, as with any method of divination, even when not looked at from a psychic or esoteric perspective, this way of obtaining information can be likened to the more general domains of active imagination, and the seeding of the intuition in aiding either associative or divergent information extraction from the subconscious. In this regard, as has been testified by researches on general information technologies, the shrine is a technology for aiding the evocation of information from the subconscious.</p>
<hr />
<p><strong style="color:white">Becoming More Advanced</strong></p>
<p>Once you learn how to decipher messages in the shrine, the next logical step is to leverage that potential to do more than just talking to these entities. You will soon discover that you can obtain very context-specific messages, sometimes even the potential to obtain information about things you would not otherwise expect to know yourself - like hints about things hidden or yet-to-be! This is a powerful tool of evocation, invocation, communion, and divination. But that's something only practice and more learning can help you see.</p>
<p>Also, the advanced operator will notice that the leveraging of music, colors, flames, sigils and such, all come together to make working with the shrine even more efficacious. As for the music, note that each shrine has its own sound themes, and that you can toggle through the available default sounds by clicking the music toggle switch below the shrine.</p>
<p>Even more advanced users can leverage git, and then clone this entire technology from it's source repository, so that they can install and use the shrine locally on their own devices, with or without an internet connection. A further advantage of this, is that you also get access to some features not readily available to those using the public, online shrine - such things as accress to Namon's shrine, ability to add your own deities, music, altars,
seals, or even adding entirely new altars to the shrine! This sort of flexibility and power is something we can only explain or teach to those initiated or practicing with us, otherwise, the source is on Github, and one can access it and use it as they will.</p>
<p>We have successfully used this technology to aid in the design of advanced rituals, to divine before or after rituals, to obtain words of power for use in rituals, to ask for and obtain intents without even performing actual rituals, dispatched spells via the aid of the entity communed with, etc. The limits of what you can do with this technology is bound by your ingenuity and general understanding of how magick universally works.</p>
<hr />
<p><strong style="color:white">Keeping and Consulting Records</strong></p>
<p>At any one moment, note that you can even heighten your use of the shrine, by incorporating it into other esoteric operations - e.g, during a traditional ritual, you could have the shrine open, so that once you have raised sufficient energy, you then use the shrine to commune or dispatch a spell, issue a prayer, etc. </p>
<p>You also have the option to record your transactions at the shrine (the messages you send or receive, are only stored in your browser's local storage, and never synchronized elsewhere, except if you do this yourself). You can click a button below the altar, and then read your previous transactions, which you can then copy and paste in a document elsewhere, and then further analyze or use as basis for future interactions and experimentation via the shrine. This is highly recommended (though switched off by default), and experience has shown us, that much like how a magick diary aids in strengthening both the technique and conviction of the ritual magician, a compilation of records of your shrine transactions (if possible, store them together with the deciphered messages you get), will aid in improving your trust and usage of the shrine technology. </p>
<hr />
<p><strong style="color:white">More Help Still?</strong></p>
<p>Beyond all this, you would need to either contact us directly, or learn from others who have mastered the use of this fringe esoteric technology. There's much room for improvement, and technomancy has a very bright future, especially for those exploring Scientific Illuminism.</p>
</div>
</div>
</div>
<!-- end panel: school-shrine-technology -->
<!-- panel: school-books -->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="heading-school-books">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion-school" href="#collapse-school-books" aria-expanded="true" aria-controls="collapse-school-books">
FEATURED BOOKS
</a>
</h4>
</div>
<div id="collapse-school-books" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading-school-books">
<div class="panel-body books">
<h2>Books Worth Reading and <b>Keeping</b>... </h2>
<!-- books row -->
<div class="books-row row">
<!-- book -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="books/book1.pdf" class="book-link" target="_blank"><img src="images/book_covers/book1.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="book-title">Condesed Chaos - <small>Phil Hine</small></div>
<p>This is a no-bullshit, modern introduction to Chaos Magick, our preferred foundational framework for serious students.</p>
</div>
</div>
</div>
<!-- end book -->
<!-- book -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="books/book2.pdf" class="book-link" target="_blank"><img src="images/book_covers/book2.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="book-title">Demonic Bible - <small>Susej, Tsirk</small></div>
<p>Not for its shock value is this book valued among those we wish the serious student to pick up, but because it brings together a pragmatic and potent self-initiation framework (in the same spirit of such ancient grimoires as Abramelin's), in a manner conducive for the student of the black paths.</p>
</div>
</div>
</div>
<!-- end book -->
<!-- book -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="http://documents.mx/documents/daemonic-magick.html" class="book-link" target="_blank"><img src="images/book_covers/book3.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="book-title">Daemonic Magick - <small>Seleneicthon</small></div>
<p>Within less than 30 pages, a book worth all the black salt, is presented, in a simple, elegant and pragmatic way - and perhaps, a bit sarcastic at that. If a book could be tatooed onto the mage's skin, this would be it. Given how rare this title is, it might make sense to purchase a physical one, or grab the pdf asap!</p>
</div>
</div>
</div>
<!-- end book -->
<!-- book -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="books/book3.pdf" class="book-link" target="_blank"><img src="images/book_covers/book3a.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="book-title">Shrines of The Free Men - <small>Joseph W. Lutalo</small></div>
<p>This is a work of fiction, a novel, exploring modern western esotericism married to African esotericism to give birth to a kind of mystical amalgamation reminiscent of the Cwezi. It is also one of few books that would help one paint a picture of how occultism is actually experienced or practiced in contemporary rural and urban Africa, especially with a strong Western bias present. Modern Chaos Magicians, students of Voodoo or Shammanism will find lots to relate to, in the adventures of Ignatius.</p>
</div>
</div>
</div>
<!-- end book -->
</div>
<!-- end books row -->
<!-- books row -->
<div class="books-row row">
<!-- book -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="books/book4.pdf" class="book-link" target="_blank"><img src="images/book_covers/book4.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="book-title">Man and His Symbols - <small>Carl Gustav Jung</small></div>
<p>The more reliable, original, modern introduction to occult symbolism and the potencies of the psyche, from a scientific/psychological perspective.</p>
</div>
</div>
</div>
<!-- end book -->
<!-- book -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="books/book5.pdf" class="book-link" target="_blank"><img src="images/book_covers/book5.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="book-title">LIBER 777 - <small>Aleister Crowley</small></div>
<p>This is the GPS in the occult realms. Indeed, one of Aleister Crowley's best, most ambitious works for the modern, unrestrained, pragmatic worker. This is one of the best systems of Universal Correspondences readily accessible to the enterprising mage of any path - Oriental, Occidental, Afro or Chaotic.</p>
</div>
</div>
</div>
<!-- end book -->
<!-- book -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="books/book6.pdf" class="book-link" target="_blank"><img src="images/book_covers/book6.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="book-title">MYSTIC MASONRY - <small>J.D. Buck, M.D.</small></div>
<p>A fine esoteric book. This is one of the most beautiful masonic books out there. If a student of the occult arts needs to read for entertainment, while being illuminated, this would be one of the titles to devour. A good lesson, concerning what's gone wrong with the mechanics inside popular orders, and what the modern mystery school needs to address...</p>
</div>
</div>
</div>
<!-- end book -->
</div>
<!-- end books row -->
<!-- books row -->
<div class="books-row row">
<!-- book -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="books/book8.pdf" class="book-link" target="_blank"><img src="images/book_covers/book8.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="book-title">The Mysteries of Magick: A Digest of the Writings of Eliphas Levi - <small>A.E. Waite</small></div>
<p>
<i> <b>Magick power is composed of two things - a science and a force.</b></i> Both need to be well understood and leveraged, to be successful in this work. <i>The gate of truth is closed, like the sanctuary of a virgin; he must be a man who would enter. All miracles are promised to faith, but what is faith except the audacity of a will which does not falter in the darkness, and which advances towards the light through all trials, and
overcoming all obstacles?</i>
</p>
<hr/>
<p>The Kaballah and Eliphas Levi are very important things to both the white and black ceremonial magician. This particular book, is a deep, essential and critical exposition of the mystic work of one of the greatest mages of all time. We might have directly shared <b>Dogme et Rituel de la Haute Magie</b>, also translated by A.E Waite, but this work delivers the meat of the others sufficiently and succinctly. It also delivers some useful criticism of Levi's ideas, criticisms which would be of use to those exploring classical concepts of ceremonial magick and the
ancient mysteries. Be patient, and read. You will not be dissapointed.</p>
</div>
</div>
</div>
<!-- end book -->
<!-- book -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="books/book7.pdf" class="book-link" target="_blank"><img src="images/book_covers/book7.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="book-title">SIGILS for In/Envoking Demons & Daemon-Gods - <small>S. Connolly</small></div>
<p>When it comes to black magick and the daemonic arts, having the right tools is critical. In the spirit of ancient and modern LHP work, the use of sigils and seals when dealing with these dark powers is a potent tool. Here, find inumerable, working sigils and seals for some of the most important of dark powers.</p>
</div>
</div>
</div>
<!-- end book -->
<!-- book -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="books/book9.pdf" class="book-link" target="_blank"><img src="images/book_covers/book9.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="book-title">A COURSE IN DEMONIC CREATIVITY - <small>Matt Cardin</small></div>
<p>A perfect <strike>Writer’s</strike> Creator's Guide to the Inner Genius</p>
<p>If you; build software, write books or blogs; design buildings; compose or perform music; design products; imagine with science, etc. If you are any kind of creative person, or if you desire to become one, then this is a book that gives a serious treatment of how to awaken, and tap into your TRUE, INNER POTENTIAL - your unconscious (and beyond). The Muse is not an archaic concept - god might be dead, but not the daemon, ever!</p>
<p>This is not a self-help book. It's pragmatic magick for the modern innovator.</p>
<p>If the following concepts strike a chord in you, then this book is most likely for you: <i>ghost writer</i>, <i>divine inspiration</i>, <i>voices in the head</i>, <i>inner light</i>, <i>secret friend</i>, <i>holy guardian angel</i>, <i>personal demons</i>, <i>familiar spirits</i>, or my favorite, <i>godfriends.</i></p>
</div>
</div>
</div>
<!-- end book -->
</div>
<!-- end books row -->
</div>
</div>
<!-- end panel: school-books -->
</div>
</div>
<!-- end panel-group: school -->
</div>
<!-- end tab:school -->
<!-- tag: consult -->
<div role="tabpanel" class="tab-pane fade" id="consult">
<div class="panel-group" id="accordion-consult" role="tablist" aria-multiselectable="true">
<!-- panel: consult-intro -->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="heading-consult-intro">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion-consult" href="#collapse-consult-intro" aria-expanded="true" aria-controls="collapse-consult-intro">
WHY?
</a>
</h4>
</div>
<div id="collapse-consult-intro" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading-consult-intro">
<div class="panel-body introduction">
<p>
You are free to contact us about anything concerning the material on this platform. Likewise, you can make suggestions, propose features or improvements to the shrine technology, share your experiences using it, request for help with your own magick or studies of it, etc. Also, because there have been some interesting requests for contract magick, we decided to put a category for such requests as well, but, before making a request concerning help
spells, exercises or troubleshooting aspects of your esoteric work, try to visit the school section, and consult some of the fine books we've proposed for students and practitioners. There's a lot to be learnt and to be done, especially when you start to get practical.
</p>
<hr/>
<p>If you can't get the shrine working for you for any reason, or if there's something more personal that you'd love to express directly to us, contact us by email via: <b>esoteric</b> at <b>nuchwezi.com</b></p>
</div>
</div>
</div>
<!-- end panel: consult-intro -->
<!-- panel: consult-form -->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="heading-consult-form">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion-consult" href="#collapse-consult-form" aria-expanded="true" aria-controls="collapse-consult-form">
CONSULTATION
</a>
</h4>
</div>
<div id="collapse-consult-form" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="heading-consult-form">
<div class="panel-body consult-form">
<iframe src="https://theatre.nuchwezi.com/persona/3a3f7273-d500-4983-affd-5aa1f6c0c840/histrion/?embed=1&minimal=1&save=0" frameborder=0 class="consult-iframe">
loading consultation form...
</iframe>
</div>
</div>
</div>
<!-- end panel: consult-form -->
</div>
<!-- end panel: consult-accordion -->
</div>
<!-- end tab: consult -->
<!-- tab: labs -->
<div role="tabpanel" class="tab-pane fade" id="labs">
<div class="panel-group" id="accordion-labs" role="tablist" aria-multiselectable="true">
<!-- panel: labs-intro -->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="heading-labs-intro">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion-labs" href="#collapse-labs-intro" aria-expanded="true" aria-controls="collapse-labs-intro">
About Nuchwezi Esoteric School LABS
</a>
</h4>
</div>
<div id="collapse-labs-intro" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading-labs-intro">
<div class="panel-body introduction">
<p>
If you've found this shrine technology interesting, or if you'd like to explore more of the ideas we are experimenting with, in the domains between science, technology and magick, then you'll definitely want to find out more about the tech department at the Nuchwezi Esoteric School.
</p>
<hr/>
<p>Our labs currently explore the following aspects of magick, using technology
<ul>
<li>Seeding Divination - especially as it relates to controlling and enhancing sources of randomness in divining techniques - with a special interest in exploring uses of atmospheric phenomena, and computer-aided randomness, as sources of bias vs classical, operator induced sources.</li>
<li>Divination Interfaces - with strong interest in astral-visual induction as used in various scrying systems</li>
<li>Divination with Quantifiable Data - curiousities in potential applications of statistics in augementing divinations (think, shammans with BIG Data)</li>
<li>Computer-Aided Scrying and Automatic Writting - using lexicons in alphanumeric sortilege, synthesis of projected communication using pre-existing alphabets/lexicons, etc.</li>
<li>Quantifiable, falsifiable magick - using statistics, the scientific method and rigorous magical journaling for cutting the bullshit out of magick, and exposing repeatable formulae, points of failure in ritual, testing Probabilistic Models of Magick (see Peter J. Caroll's work), and more... To support this noble and ambitious approach to magick, we have built an advanced magick journalling platform that can support not just individuals, but
entire orders/classes of students, with in-built analysis facilities.</li>
<li>Occult languages - exploring linguistics, communication-psychology and information representation (symbolism), from the perspective of exploring and hacking conscious-mind filters, exploiting subconscious-mind concept-maps, non-verbal communication, etc.</li>
<li>Cryptography - closely linked with most esoteric and occult work, we are particularly interested in applications of stealth, without-machine encryption methods such as crypto using combos of ciphers or impromptu symbol systems (sigils) and steganography</li>
<li>HCI -- definitely, as we draw closer and closer to mainstream adoption of VR, there's strong, keen interest in exploring the potential of leveraging augemented reality or even entirely virtual realities, to enhance, evolve and synthesize new forms of magick, ritual and mystic experiences. However, we are awaiting the chance to get our hands on a VR Console, to get our hands dirty in this exciting area of future, pragmatic magick.</li>
</ul>
<hr/>
<p>Outside of the magick-technology arena, we definitely do carry-out more traditional esoteric research, and the following are some key areas of interest:
<ul>
<li>Re-classification of and refinining of African traditional pantheons, so as to enhance the accuracy/efficacy of evocational work and to aid in fitting the native mythos into a more universal correspondence framework. In this regard, most focus is currently on the East African pantheons of the Chwezi & Tembuzi divinities</li>
<li>Weather modification rituals - especially because, more than ever, climate change poses a big problem to our people everywhere, and there's much hope that keeping the ancient lines of work in esoteric meteorology, could still be worth it. Our focus is mostly on seeding, starting and stoppping rain, as well as the induction and control of turbulent weather locally and remotely (via symbolic machines).</li>
<li>Evocational Magick - more serious than most other work we are doing, is the active exploration of various evocational systems, in the hope of reanimating and rejuvenating many dying native pantheons that used to be of potent significance in the collective African Mind. In this domain, we don't limit work to interlucustrine pantheons, but explore as fas as the Bantu mythos of Sub-saharan, South and West Africa. This is one area where
the need for more collaboration and formalization of the craft is much needed - much of the wisdom is endangered.</li>
<li>Black Magick - self-deification is the end. But, along the way, there's exploration of the "darker" aspects of the pysche; psychopathology, paranormal psychology, adversarial and theurapeutic unorthodox psychological work, dealing with such aspects of the mind as complexes, shadow-selves, the Id, alter-egos, projected personas and more... much of the work is geared towards uncovering a more universal framework for efficacious conduction of black
magick (think deep, personal transformation), using whatever dark tools are available.</li>
<li>Sex Magick - in more private work, there's strong interest in, and practical exploration of the associations between creative potential of the psyche (especially issues around psychic-energy as it relates to ideation and motivation), free-association power, visual-thinking, and then the more mystical, magical aspects of creating in the astral (lots to do with ideation and perpetuation of elements in the psyche), etc, and how these things relate
to sexual-expression and suppression of it, libido, and the unconscious in general.</li>
<li>Music and Magick - there's a keen interest in the exploration and application of musical expression, in encoding payloads for the unconscious, enhancing or altering emotional states during ritual, concepts of universal communication - as stronger means of altering mind-states without cognitive interference, etc. </li>
</p>
<hr/>
<p>The above isn't doing justice to the breadth and depth of work we are doing in the domains of pragmatic esotericism, but it gives you a fair idea of of what NES is, and what it's not. For those who are already engaged in these or more advanced forms of magick and esoteric work, we'd surely love to get in-touch, and perhaps even collaborate on some domains of mutual interest. Being influenced heavily by the Chaos, Tactical Magick stream, we don't really
have localized research stations, and have much of the work geographically scattered among our normadic shammans and students. Contact us, if you desire to work in an area we might be near to - Africa especially.</p>
</div>
</div>
</div>
<!-- end panel: labs-intro -->
<!-- panel: labs-projects -->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="heading-labs-projects">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion-labs" href="#collapse-labs-projects" aria-expanded="true" aria-controls="collapse-labs-projects">
FEATURED PROJECTS
</a>
</h4>
</div>
<div id="collapse-labs-projects" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="heading-labs-projects">
<div class="panel-body projects">
<h2>Some Projects we've made public... </h2>
<!-- projects row -->
<div class="projects-row row">
<!-- project -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="HTTPS://SCRY.NUCHWEZI.COM" class="project-link" target="_blank"><img src="images/projects/scry.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="project-title">THE SCRYING ORB - <small>https://scry.nuchwezi.com</small></div>
<p>You might call this an experiment in cyber-scrying, or computer-aided scrying, but it has much to do with classical scrying techniques such as smoke and cloud-gazing, and definitely the scrying orb. It introduces the concept of seeding to scrying as well. One very neat use of this simple tool is as a ubiquitous scrying tool - you just need a browser, that's all.</p>
</div>
</div>
</div>
<!-- end project -->
<!-- project -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="https://cbd.nuchwezi.com" class="project-link" target="_blank"><img src="images/projects/cbd.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="project-title">Chwezi Biblio Diviner (CBD) - <small>https://cbd.nuchwezi.com</small></div>
<p>Because we love books - we have lots of them, and love to hack the collective mind (including God's). This tool might be a bit daunting at first use, but once you <a href="https://nuscribes.com/scribes_app/book/46/read/scientific-illuminism-science-serving-magick#chapter-562" target="_blank">read about the principles</a> that inspired it, and how its algorithms work, you'll be divining like a bad-ass Nostradamus pretty soon! It's
also an evolution of classical African sortilege as used in witchcraft, to new domains... (especially more true, when this system is used without a computer interface - as with dice, bones, etc for example)</p>
</div>
</div>
</div>
<!-- end project -->
<!-- project -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="http://tiny.cc/ai-diviner" class="project-link" target="_blank"><img src="images/projects/aidiviner.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="project-title">Active Imagination Diviner (AI Diviner) - <small>http://tiny.cc/ai-diviner</small></div>
<p>This highlights some of the more practical, repeatable, falsifiable work we are trying to do, on the border-line between psycho-analysis and magick. In this case, an auto-journaling tool, coupled with guided introspection, anamnesis and other related features of the mind (especially when explored in altered states of consciousness), bring to life a potent psycho-analytical tool on the one hand, and a potent divinatory tool on
the other. This is the one of few tools we've built that currently works on Windows only, and in Desktop environments in particular.</p>
</div>
</div>
</div>
<!-- end project -->
</div>
<!-- end projects row -->
<!-- projects row -->
<div class="projects-row row">
<!-- project -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="http://crypto.nuchwezi.com" class="project-link" target="_blank"><img src="images/projects/crypto.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="project-title">CRYPTO and Occult Ciphers - <small>http://crypto.nuchwezi.com</small></div>
<p>If you've been using this shrine technology, you've already encountered some occult crypto in use - there are very good reasons for using these ciphered forms of communication and not plain-text. The theory is <a href="https://nuscribes.com/scribes_app/book/46/read/scientific-illuminism-science-serving-magick#chapter-564" target="_blank">explained here</a>, and with this tool, you get to explore and have a handy interface with which to
encode/decode ciphered spells, mantras, words of power, etc. Also it's not just for ritual work that this tool is useful, but also for fun, creative use of crypto in mundane messaging and even artistic composition!</p>
</div>
</div>
</div>
<!-- end project -->
<!-- project -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="http://ghost.nuchwezi.com" class="project-link" target="_blank"><img src="images/projects/ghost.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="project-title">GHOST Messaging - <small>http://ghost.nuchwezi.com</small></div>
<p>Of the forms of crypto, the most magical is perhaps steganography, as it purports to hide in plain-sight, what is deemed most important and secret - the message. So, this little tool, a bit tricky for anyone impatient to explore it without digging-deeper, is very handy for deviant mages that wish to curate or exchange secrets in unsafe, but otherwise innocent media - beware of poets! This can be useful in composing sensitive sections
of grimoires, journals and such. Definitely, proper use would not only require understanding it, but also customizing it based on domain and nature of threat.</p>
</div>
</div>
</div>
<!-- end project -->
<!-- project -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="http://shrine.nuchwezi.com" class="project-link" target="_blank"><img src="images/projects/shrine.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="project-title">SHRINES - <small>http://shrine.nuchwezi.com</small></div>
<p>As you might guess, this project is exactlty this platform you are now using. It's an attempt to evolve the traditional shamman shrine and altar a virtual, digital domain - similar to what astral temples would do for the same, in terms of ubiquity and improvisation. We also wish to see more Africans revisit their ancient practices of communing with ancenstral spirits, deities and more, directly from the comfort of their homes
(and work-places), as was the case when every family and shelter used to have an altar or a shrine somewhere. We desire to support and evolve the next generation of cyber-shammans, as well as bring witchcraft and magick well into the modern, hyper-tech world we are continually morphing into.
</p>
</div>
</div>
</div>
<!-- end project -->
</div>
<!-- end projects row -->
<hr/>
<p>To read and learn more about the above occult-technology projects, perhaps go over to our platform, NuScribes, and grab a copy of the paper we wrote on <a href="https://nuscribes.com/scribes_app/book/46/read/scientific-illuminism-science-serving-magick">Scientific Illuminism</a></p>
<p>On the less technical side, we have these other projects and experiments that border on cultural and media experiments with magick and esotericism. A key motivator for these other projects is activism, curation of occult wisdom and arts, evolving of occult themes in our culture, and definitely doing a little more magick in alternate ways...</p>
<hr/>
<!-- projects row -->
<div class="projects-row row">
<!-- project -->
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-body">
<a href="https://nemesisfixx.com" class="project-link" target="_blank"><img src="images/projects/music.jpg" class="img img-responsive img-rounded" /></a>
</div>
<div class="panel-footer">
<div class="project-title">Nemesis Fixx - Esoteric (music)<small>https://nemesisfixx.com</small></div>
<p>This is an experiment in marrying music and occultism in more sensual, enlightening ways - via deep, melodic, conscious, hardcore Hip Hop (that's lots of adjectives, right? Listen to these demos, and you'll probably add some more...). It's still a WIP, but we didn't shy away from sharing the progress... along the way, students of esotericism will find much familiar references & concepts explored, and those new to esotericism will
have much to learn and dance to!</p>
</div>
</div>
</div>
<!-- end project -->
<!-- project -->
<div class="col-sm-4">
<div class="panel panel-default">