-
Notifications
You must be signed in to change notification settings - Fork 3
/
alchi synth english 2019-02-19.txt
3238 lines (2368 loc) · 91.1 KB
/
alchi synth english 2019-02-19.txt
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
model solution. simple but effective
the missing link .... between
psychology + sociology,
physis + pathos,
self + others.
#todo pathos = long-term memory = consciousness = knowledge? opposed to physis = work memory = feeling [ --> CG Jung feel/think/judge/perceive ]
web of types [src/alchi-web.py]:
3 4 1 2 3 4
┌───────────┐
1 │ 2 3 4 1 │ 2
2 │ 1 4 3 2 │ 1
│ │
4 │ 3 2 1 4 │ 3
3 │ 4 1 2 3 │ 4
└───────────┘
1 2 3 4 1 2
strong bonds are top──bottom,
males are top, females are bottom,
'gender opposing types' are left, 'gender congruent types' are right,
classic center is up, romantic center is down.
more verbose / explicit:
F3 F4 F1 F2 F3 F4
┌───────────────┐
M1 │ M2 M3 M4 M1 │ M2
│ │ │ │ │ │
F2 │ F1 F4 F3 F2 │ F1
│ │
M4 │ M3 M2 M1 M4 │ M3
│ │ │ │ │ │
F3 │ F4 F1 F2 F3 │ F4
└───────────────┘
M1 M2 M3 M4 M1 M2
pathos rules, right side:
Ni = 14 = 124 = M1 (needs F2) plays M4.
Ne = 13 = 143 = M1 (needs M4) plays M3.
Se = 23 = 213 = F2 (needs M1) plays F3.
Si = 24 = 234 = F2 (needs F3) plays F4.
Ti = 32 = 342 = F3 (needs M4) plays F2.
Te = 31 = 321 = F3 (needs F2) plays F1.
Fe = 41 = 431 = M4 (needs F3) plays M1.
Fi = 42 = 412 = M4 (needs M1) plays M2.
pathos rules, left side:
Ni = 14 = 124 = F1 (needs M2) plays F4.
Ne = 13 = 143 = F1 (needs F4) plays F3.
Se = 23 = 213 = M2 (needs F1) plays M3.
Si = 24 = 234 = M2 (needs M3) plays M4.
Ti = 32 = 342 = M3 (needs F4) plays M2.
Te = 31 = 321 = M3 (needs M2) plays M1.
Fe = 41 = 431 = F4 (needs M3) plays F1.
Fi = 42 = 412 = F4 (needs F1) plays F2.
jungian extraversion:
E = extravert pathos.
I = introvert pathos.
jungian functions:
N = iNtuition = fire.
S = Sensing = earth.
T = Thinking = air.
F = Feeling = water.
new results:
male gender = romantic center = masculine culture.
female gender = classic center = feminine culture.
... cos both 'male gender' and 'romantic center' are on top.
in theory,
you can also corelate 'female gender' with 'romantic center',
but 'popular definitions' of masculinity
are more similar with 'romantic center'.
new speculation:
this might also be the meaning of the 'age' dimension,
with 'young age' = 'romantic center'
and 'old age' = 'classic center'.
todo: find more translations to the MBTI system.
difference to old 'circle of eight':
now, strong bonds connect air and water.
before, strong bonds did connect (air and air) and (water and water).
Web Of Types vs Circle Of Eight.
how do romantics pair? what are their 'strong bond'?
Web Of Types: M4--F3 and F4--M3
Circle Of Eight: M4--F4 and F3--M3
one argument for the 'Web Of Types' model:
i define pathos as 'other class' type,
so air can never play water,
and water can never play air.
this is why we need proximity of air and water.
one argument for the 'Web Of Types' model:
personal experience.
as M1, i feel closer to M4 than to F3.
one argument for the 'Circle Of Eight' model:
air and water have different diet needs.
air needs 'low carb' and water needs 'high carb' diets.
so, at least for nutrition, air and water should be separated,
and combined with the 'same element'.
another difference:
[really just a consequence of the 'strong bond' diff.]
pathos has different 'meanings' in the two models.
meaning as in: who do you need, when you play that role?
WOT: 124 143 213 234 342 321 431 412
COE: 124 133 213 244 312 331 421 442
both WOT and COE are a 'closed system' or a 'finite group',
so that every pathos (need and play) is found inside the system.
the WOT has 'discrete translation symmetry' [2d grid, lattice group, regular tiling, periodic function],
the COE has 'rotation symmetry' [cyclic group Z8].
names, roles:
air: improvize activity
fire: perfectionize activity
earth: perfectionize passivity
water: improvize passivity
air + fire = sanguinic mood = actors.
water + earth = melancholic mood = pastors.
how can we break the perfect defense?
with radical simplicity.
a system of common grounds.
if you lack friends, you compensate with principles and paradigms.
if you are trapped in "slave moral" then you are "lost in mating calls" and you are afraid of really finding answers.
physis vs pathos
what is real to one, is (only) image to an other.
real vs image.
serious vs joke.
physis vs pathos.
being vs acting.
strong vs weak.
sane vs pathetic.
rational vs irrational.
close vs distant.
well now.
in terms of CG Jung, i am NI = iNtuition + Introversion.
in terms of alchemy, i am 'fire plays water'.
in terms of psychiatry, i am hebephren-schizophrenic.
or: dreaming for a better reality.
or: god complex, natural authority. [god in private, see Hard Moral.]
or: crazy genius, arrogant dreamer.
claim:
my model is perfect,
that is,
it is so powerful,
it can explain ALL other models.
= i can provide simple translations
to other models.
Four Dimensions.
my base are four binary dimensions:
mood = sanguinic or melancholic
tempo = choleric or phelgmatic
gender = male or female
age = young or old, aka status [#todo is "status" a good synonym?].
class = outer tempo = romantic or classic.
corelations, similars:
psychotics = male, neurotics = female.
sanguinics = young, melancholics = old.
[see end of file for
translations to other models.]
assumption 1: find your self.
tendencies are inborn,
dictated by Body Type.
they fall into four elements:
3. Air = Endomorph.
1. Fire = Mesomorph Heart Shape.
2. Earth = Mesomorph Pear Shape.
4. Water = Ectomorph.
also gender is inborn, obviously.
when born, age == young.
.. so i get Eight Types
in one 'generation' = same age.
8 types = 4 elements x 2 genders.
[side note, the swastika has 8 lines.]
assumption 2: find your peers.
i dream:
every type needs two peers,
or two partners, or two 'next ones'.
ideally from an early age, from day one
= in early childhood.
the 'bonding rules' i found:
strong bonds:
M3 + F3, M1 + F2, M4 + F4, M2 + F1.
weak bonds:
F3 + M1, F2 + M4, F4 + M2, F1 + M3.
3 = Air, 1 = Fire, 2 = Earth, 4 = Water.
M = male, F = female.
all eight types form the Cirlce Of Eight:
M3--F3
F1 M1
| |
M2 F2
F4--M4
line = strong bond.
proximity = weak bond.
upper half = sanguinics = air + fire. [#todo move to lower half = young age = small kids]
lower half = melancholics = water + earth.
left half = matriarchy = female fire = gender opposing body types.
right half = patriarchy = male fire = gender congruent body types.
#todo translation to distant types,
chain of commands,
feedback loop.
Cirlce Of Eight with Romantic Center.
bowtie shape:
F1 M1
| \ / |
| M3--F3 |
| |
| F4--M4 |
| / \ |
M2 F2
Cirlce Of Eight with Classic Center.
hourglass shape:
M3--------F3
\ /
F1 M1
| |
M2 F2
/ \
F4--------M4
Majority vs Minorities.
Romantic Center = Romantic Majority + Classic Minorities.
Classic Center = Classic Majority + Romantic Minorities.
Who can read Body Type?
Who will lead my Initiation?
Element Fire.
to do so,
one must observe body shape
and body language.
observe with patience.
collect many impressions.
#todo tolerate deviations, exceptions.
logic expression rather shows Secondary Type.
body shape?
'only trust the naked ones.'
[if you do not believe in Physiognomics, skip this part.]
3. Air = endomorph = apple shape, overall chubby and round.
1. Fire = mesomorph + heart shape = strong shoulders.
2. Earth = mesomorph + pear shape = strong hips.
4. Water = ectomorph = banana shape, overall slim and long.
look at the hands.
compare middle finger and palm length.
long fingers = Romantic = Air or Water.
long palm = Phlegmatic = Fire or Water.
compare wrist joint
and the ring of thumb and mid-finger.
wrist bigger = Air = endomorph,
wrist same = Classic = mesomorph,
wrist smaller = Water = ectomorph.
look at the fingers.
strong joints = Air,
straight fingers = Classic,
pointing fingers = Water.
look at the nose.
short + pointed [concave] = Air,
medium pointed = Fire,
medium convex = Earth, [most 'straight' nose]
long + convex = Water.
also, Romantics tend to have a 'double nose tip'.
look at the skin pigment.
Earth has the most pale skin, and most dark genitals + asshole = dark bottom.
look at the nipples.
light and large areolas = air.
dark and small areolas = water.
look at the asshole = anus.
[they also do this in jail, to guess your type.]
light and small hole = sanguinics = air or fire.
dark and large hole = melancholics = water or earth
= chocolate starfish = good for 'passive anal sex'.
also compare mouth to anus.
full lips + small hole = sanguinic mood.
weak lips + strong hole = melancholic mood.
look at the genitals.
small and light = air.
large and dark = water.
[yea, i must be joking..
physiognomics is so unpopular.]
look at the head shape.
round = air, long = water.
look at the nose.
small pointed nose = sanguinics,
large convex nose = melancholics.
look at the chin + lower lip.
small chin = fire,
bigg chin = earth.
look at the ears.
large ears = romantics,
small ears = classics.
[problems come from 'race mixing' and 'small families'
to obfuscate these body signs.
'its all relative'
as in 'relative to the mainstream',
or 'relative to the average'.
if there is no mainstream,
it is more hard to compare.]
look at strength + fat distribution.
earth = strong bottom,
fire = strong front,
air = strong top [head],
water = strong back [cross].
mouth vs genitals.
romantics: strong mouth + weak genitals.
[oral fixated + sexually rather frustrated or frigid.]
classics: weak mouth + strong genitals.
[more physical than mental. strong but dumb.]
Symbols. Signs.
.. for the four elements.
3. Air = circle = three-cloud = three-shamrock.
1. Fire = heart = down = fall = V.
2. Earth = pear = spades = peak = up = rise = Lambda.
4. Water = four-star = cross.
7. Romantics = G [letter 7] = hexagram = rhombus = 'Merkel Raute'
= Square and Compasses = between rise and fall = bisexual.
Square and Compasses also shows the letter G.
12. Classics = celtic cross = between top and bottom = bipolar,
12 = L [as in Loser?], 21 = U, 1221 = ABBA
Three Letters. Three Syllables. ABC parties.
free-ma-sons,
uni-ver-sal,
vi-ven-di,
de-mo-crats,
lu-ba-witsch,
green-par-ty,
CFR,
bil-der-berg,
py-ra-mid,
tri-an-gle,
.... you get the point.
for one, they love to show in numbers. [Numerology]
but then, three syllables have one center syllable,
which is the most important one.
the last syllable is of second importance,
the first syllable is of least importance.
first = signal to start a word.
this can be an 'article' like: le, de, la, etc.
second = center = main syllable.
this will carry the main VOWEL [primitive = infant language].
the second vowel should be emphasized = prolonged, as in
el-saa-tan, ca-ruu-so, da-boo-lus, la-tii-na, etc.
the third syllable is a modifier,
to change the sound of the second vowel.
#todo how exactly? emphasis, deviation, opposition .. 5 vowels = 5 elements
Sine Wave. Year Cycle. Day Cycle.
3. Air = summer = top = june 23 = hour 0.
1. Fire = fall = september 23 = hour 3.
4. Water = winter = bottom = december 23 = hour 6.
2. Earth = spring = rise = march 23 = hour 9.
Romantics = bisexual = between opposite gradients = extreme points.
Classics = bipolar = between opposite curvatures = inflection points.
Eigen Colors.
3. Air = Yellow or White.
1. Fire = Red.
2. Earth = Green.
4. Water = Blue or Black.
#todo ?
Flag Colors.
tri color, from top to bottom.
3. Air = White Yellow White.
1. Fire = Black Green White. [rare in public. see 'the matrix' movie]
2. Earth = White Red Black. [all over the place in public]
4. Water = Black Blue Black.
classics wear contrast.
black covers the strong body half,
white covers the weak body half.
center color [accent] shows the 'strong bond' peer.
romantics wear confirmation.
strong body of air is covered in white.
weak body of water is covered in black.
Positive Racism. Black Pride.
leftists love skinny black men so much,
cos they so much look like element water.
.. like a old school shaman,
who can solve ALL the problems.
[actually its 'only' communists
trying to exterminate all classics,
or at least all born fire.]
Names. Personalities [not disorders]. Signs.
3. Air = true Hysteric = optimist = winner = prince = top = high.
1. Fire = true Manic = dominant = posessive = ruler = king = fall = down.
2. Earth = true Borderline = subordinate = slave = rise = up.
4. Water = true Schizo = pessimist = loser = bottom = low.
Secondary Type.
what is psychopathy? [pathos]
the Escape From Loneliness.
provocation. mating call. defense mechanism.
dyscrasia. imbalance. deficiency.
in my model,
false education leads to sick minds.
remember assumption 2: find your peers.
[which would be Better Education,
congruent with natural order = inborn traits.]
every one of the eight body types
is trying to find its two peers.
to find one peer,
i go 'one step further' in the Circle Of Eight.
and play the 'next plus one' type.
example: i am M1 = male fire.
to find my first partner [strong bond],
which is F2 = female earth,
i change to M4 = male water.
in short: fire plays water, to find earth.
if this 'search for peers' is frustrated,
one gets stuck in the 'next plus one' state,
and most time is playing this Secondary Type,
or 'psycho type' in contrast to 'body type'.
fake, made, secondary = conceited not confident, weak not strong.
most psycho tests will only test your 'psycho type',
ignorant [blind] for your 'body type'.
Personality Disorders.
Classic plays Air = fake Hysteric.
Classic plays Water = fake Schizoid.
Romantic plays Fire = fake Manic.
Romantic plays Earth = fake Borderline.
in the Secondary Type,
you can see the contrast between
born and made,
natural vs artificial,
feel vs know,
physis and pathos,
body and mind,
rule and exception,
noise and signal.
logic expression [talking]
can be interpreted as a 'mating call'
= search for peers.
if not answered [frustrated]
one alone must find an answer [false feedback, monolog].
= 'help your self'
= pushing into loneliness,
away from 'mutual completion'.
a true friend will take your weakness with his strength = completion.
only an enemy will use your weakness for his profit.
example: element fire.
while 'born fire' is a 'natural authority'
and has a feeling for order
= a talent for dominance and selection ..
every 'made fire'
will only reproduce its learned knowledge.
this is the contrast of 'living gods' vs 'dead gods',
of 'true intelligence' vs 'artificial intelligence'.
look at the Lebowski Dude [Jeff Bridges] as 'born fire'.
signs of 'made fire' are
shortsight = greed for quick profit,
insecurity = explore step by step.
[Hard Moral]
made fire = OCD = obsessive compulsive disorder.
made = disorder, fake, weakness.
born = personality, strength.
the problem?
feelings tend to be 'weaker' than knowledge,
in a 'culture' [style of education]
that rewards knowledge, and represses feelings.
also,
normopathy [sick majority]
gives 'false security' to sick ones.
[Group Narcism]
also,
'sensation seeking' rewards the sick ones.
also,
the switch to Secondary Type
was too long ago, so they prefer:
rather change never than late.
possible escapes are:
1. hallucinogens like DMT.
2. TRE = trauma releasing exercises.
both must be used only in a 'good setting'
so one can find the natural peers.
but:
feeling = talent = natural strength = potential = gift.
False Education will always
1. prevent bonding with 'natural peers'
= push into 'next plus one' states,
preferrably into the 'introvert' or 'neurotic' state.
2. compensate weakness to 'false security'.
= divide et impera, divide and conquer.
aka Naturalism vs Materialsim:
frustrate natural needs,
compensate with 'dead gods' = material goods
= food, drugs, clothes, toys.
only ugly and weak bodies need clothes to hide.
paradox, rebel, provoke, permanent state of exception, normopathy:
destroy natural order [strong, rule],
and replace with made order [weak, exception].
Melting Pot vs. Cultural Mosaic.
mixed community vs. gated community.
mixing different cultures
is a source of constant Stress.
[see Typical Stress Response]
having a 'homogen community' aka 'closed society'
is privilege for the rich elite.
'the paradise of the rich ones
is made from the hell of the poor ones.'
also, mixed groups have a much higher demand
for 'made order' as in 'police state'.
the 'clash of cultures' generates crime
which generates jobs for police.
all crime is privilege.
'thou shalt not steal' -- but i can!
= the difference between 'you people' and 'me people',
between Slave Moral and Hard Moral.
or: to fight criminals,
police must stand above 'the law',
for Equality Of Arms.
Education [vs. Initiation?]
note how 'civilization'
[in contrast to primitive culture]
does overrate Education [forced correction]
knowledge and status.
this simply is 'ageism'
= age discrimination
= old over young
= rich over poor
= know over feel
= only kids must learn / follow / change.
this is one way to justify 'made fire',
to justify 'false authority'.
another contrast is Class:
Romantics vs Classics.
rational vs irrational.
realist vs idealist.
sane vs crazy.
shortsight vs farsight.
childish vs mature.
humans vs animals.
smart vs dumb.
open mind vs narrow mind.
bisexual vs bipolar.
deaf vs blind.
eyes vs ears.
in elements:
Air + Water vs Fire + Earth.
3 + 4 vs 1 + 2.
7 vs 12.
G vs R.
[G is letter 7,
and combines circle + cross.]
in functions:
Think + Feel vs Intuit + Sense.
or:
Chaos vs Order
the dream of a 'class less society'
needs to exterminate a whole class,
mostly the class of classics.
classics = bipolar
= bridge between the two poles = moods.
romantics = bisexual
= bridge between the two sexes
= between patriarchy and matriarchy.
the switch to 'next plus one' state
is always a switch of Class.
born romantics play fake classics,
and
born classics play fake romantics.
fake classic = made order
= human written laws, science, etc.
romantics explore with 'trial and error'.
romantic = shortsight, dynamic, fugitive.
Class aka 'outer tempo'.
in contrast to 'inner tempo' = choleric or phlegmatic.
why?
cos mood [sanguinic or melancholic]
and tempo [choleric or phlegmatic]
have similar direction,
they are NOT orthogonal.
sanguinic mood is similar to choleric tempo,
melancholic mood is similar to phlegmatic tempo.
lets translate this similarity to signs:
sanguinic and choleric are positive,
melancholic and phlegmatic are negative:
[translation to Old Alchemy, body humor combinations:]
3. Air = sanguinic choleric = + x +.
1. Fire = sanguinic phlegmatic = + x -.
2. Earth = melancholic choleric = - x +.
4. Water = melancholic phlegmatic = - x -.
result + = Romantic.
result - = Classic.
Sanguinic Mood = self love, leader, commander, resistant to insults.
Choleric Tempo = quick response, neurotic.
Same First vs Other First.
Romantics seek strong bond [first bond]
with the same element [homopolar], of other sex [gender].
.. and weak bond [second bond]
with 'same mood' but 'different tempo'.
R.s they bring short-term equality
[trade economy, revenge justice]
and produce long-term chaos
[decadence, system crash, hell].
Classics seek strong bond
with 'other mood' and 'other tempo' [bipolar]
.. and weak bond
with 'same mood' but 'different tempo'.
C.s bring short-term 'chaos'
and produce long-term stability
[heaven]
Left vs. Right.
multiple translations seem valid.
1. Right = Patriarchy = Gender Congruent Body Types = "the good swastika".
2. Right = Melancholics.
3. Right = Hard Moral = fire ideal.
4. Right = own group [Group Narcism]
5. Right = Classics.
6. Right = Fire.
7. Right = primitive culture, naturalism.
8. Right = water, Left = air, Up = earth, Down = fire. [Mobile Swastika]
Extravert vs Introvert vs Ambivert.
in my view:
Air = Extravert = romantic leader.
Fire = Introvert = classic leader.
Water + Earth = Ambivert = followers.
Fire is also called 'arrogant'
cos it will never ask [latin rogare = to ask],
and always only answer, or command.
fire is a born oracle, o-raa-cle
Typical Stress Response.
this part was inspired by the buffalo herd order.
in Time Of Stress [threat from outside],
Romantics hide in the center [invisible, black],
Classics are pushed outside [visible, white] = Romantic Center.
in Time Of Peace [outside bears opportunity]
Romantics explore outside [fake friends],
Classics go to center [homies] = Classic Center.
X = center = Romantics in stress.
O = outside = Classics in stress.
In center,
two opposites join for temporal unity.
Time Of Stress: F3--M3 + F4--M4 [other + other]
Time Of Peace: F1--M2 + M1--F2 [same + same]
so,
Romantics seek equality first, contrast second.
Classics seek contrast first, equality second.
Class Justice, Double Moral.
in made order,
Romantics are always preferred,
#todo
Emancipation. Dualism. Tantra.
Mutual Completion. Both Sides.
Balance Of Powers.
Romantics act more 'masculine' like Mars [martial arts],
Classics act more 'feminine' like Venus.
= group gender.
true 'emancipation'
would replace individuals
with 'groups of eight'
to represent all eight types.
or at least M1 + F1
= patriarch + matriarch
= king + queen.
Empire vs Pagans.
Large State and Small States.
Church vs Sects.
Sect as in Person Cult, Small State, Monastery, Gated Community.
see Separation of Church and State.
Civilization vs Primitives.
Republic vs Monarchy.
open system vs. closed system.
large states vs. small states.
remote control vs. self organization.
kill other gods vs. kill other weaks.
sabotage vs. coexistence.
#todo
empire = authoritarian = collectivist.
the empire does occupy colonies,
with the excuse of 'natural chaos'
and a better 'made order'.
that 'made order'
must be built and protected by force,
[ militant pacifist, fucking for virginity ]
and must be paid for by taxes = by the slaves.
see Hard Moral.
translation to Power Distance and Geert Hofstede.
distant power = empire = large group = normopathy, morality, small families, broken "inner structure" is compensated with "strong government", over-strict, hostility, distrust, anonymity, symbol union, "culture of fear", leaders tend to hide their "ruler knowledge" and tend to sabotage the recruiting of new leaders, greed for profit / short-term success / opportunism.
close power = cult = small group, with mostly complete "inner structure" = close to the Circle Of Eight = close to Natural Order, healthy "extended families", born leaders are easily recruited to made leaders and employed in positions of power, search for long-term stability and strong relations.
Small State.
Tribalism in the sense of
small paganistic spirtual communties
caring for eachothers wellbeing
making due of simple life
#todo
Slave Moral vs. Hard Moral.
see Friedrich Nietzsche, Sklavenmoral vs Herrenmoral.
fire = hard = heart = [german:] herz = herr.
slave moral = 'we are all element earth' = earth ideal.
hard moral = 'we are all element fire' = fire ideal.
earth ideal in public [idiot safe space]
= introvert romantics follow born earth.
fire ideal in private*
= extravert romantics follow born fire.
*private person cult, secret ruler knowledge,
secret societies.
born fire = devil in public, enemy of the state.
Hard Moral tends to steal all good,
to use it as attractor, bait, pull factor, dead god = sex sells,
.. and to spread all bad,
as push factor, negative motivation, punishment.
= Strategy Of Tension, Crowd Control.
every 'criminal offense' is only a privilege for the elite.
Slave Moral is forced on the majority,
for the goal of profit maximization
= many slaves, small elite.
'the paradise of the rich ones
is made from the hell of the poor ones.'
Judaism is a supremacist ideology
with thousands of Talmudic laws on
how to manage non-Jewish slaves.
[most important, how to educate kids to be slaves.]
slave moral = no one is "responsible" [in our group].
hard moral = every one is "responsible" [in our group].
responsible = dominant = fire.
Collectivism vs Individualism.
multiple translations:
1. C = Slave Moral, I = Hard Moral
2. C = Gender Opposing, I = Gender Congruent
3. C = melancholic mood, I = sanguinic mood
collectivist ideal: trustworthy, honest, generous, sensitive, team work, cooperation, community man.
individualist ideal: assertive, strong, competition, artistic, bohemian.
Masculinity index. masculine vs feminine
multiple translations:
1. M = romantic center, F = classic center
2. M = psychotic, F = neurotic
3. M = sanguinic, F = melancholic
M: assert, hunt, compete, expand, fight, aggress, work, start wars, impatient, business over art, radical: destroy + build new, action, dominate in mild climate, intensive farming, industry, innovate, explore, modern, greed, hyper-active, much work + little life, work for fun, sportive, playful
F: nurture, heal, repair, gather, relate, lazy, defend, protect environment, diplomacy, art over business, plan, organize, settle, dominate in hard climate, extensive farming, tradition, oldschool, hyper-passive, little work + much life, work to survive, mature
M: japan, USA, germans, ireland, UK, mexico, italy
F: sweden, NL, spain, thailand, korea, portugal, middle east, west africa
#todo
ism = -is-mos = -->adjective + -->noun = similar, mostly same.
# schism, deviation, variation, pathos, escape, rebel, change.
just .... escape from what?
when i have the wish to escape,
then my 'old world' must be broken some how.
or: if i play a role, then i miss some one.
most people have to grow up without 'born leaders',
and are trained to follow 'made leaders',
and maybe later they can be 'made leaders' too.
'made leaders' only lead for a short time [election cycle],
and they only lead in their field of expertise.
but 'perfection' is more than a 'sum of partial solutions'.
integrity is the natural talent of element fire.
.... to organize 'social integrity'
and to 'bring together who belongs together'.
mating. coupling. mediating.
'the [bad] media' do the opposite:
they divide those, who belong together,
and they 'sublimate' natural attraction forces
into 'motivation to self-harm'.
[motivation psychology, rape and pull, reverted escape]
Humanistic Euthanasia
another sign of Hard Moral is Humanistic Euthanasia.
= to get rid off 'bad guys'
they ban bad guys away from public territory,
into loneliness = isolation,
so they either starve to death,
or apologize and come back.
romantics always overrate learning and education.
aka 'forced exorcism' = beat the shit out of a bad guy.
[for 'better exorcism' see TRE = Trauma Releasing Exercises.]
romantics feel 'nature is chaos' and must be controlled.
= all humans are born equal [egalitee, tabula rasa]
and must be educated, as in:
rewarded for good, punished for bad behavior.
= conditioning, brain washing.
also,
sterilization is Humanistic Euthanasia.
= kill their kids.
Group Narcism.
all 'groups' offer security for their members.
in return, members see their group as good,
or better than other [neighbor] groups.
other groups can serve as scapegoat
= projection of self critic.
Heritage. Caste System.
#todo
Ethic Of Intention. Gesinnungs Ethik.
False Patience. Endless Cycles.
when romantics produce chaos,
they as true opportunists
will excuse with:
at least i had good intentions.
Intention vs Response.
idea vs realization.
image vs real.
another way to 'escape from responsibility'
is False Patience:
they will make you wait forever.
they will promise a better future,
but they will never deliver.
[see Perfect Hoax]
Internal Gender.
every element prefers one gender.
in my symbolism,
this is seen on the bottom.
male elements have pointy bottoms:
heart + cross = fire + water.
female elements have round bottoms:
pear + circle = earth + air.
if the 'outer gender'
is same as the 'inner gender',
the type is a
Gender Congruent Body Type,
or is part of the Patriarchy half.
Astrology.