Commit 2317cb158c23030e06f08170df79ac92f9cda6d9

Thomas de Grivel 2024-01-22T07:21:26

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
diff --git a/Thomas-de-Grivel.txt b/Thomas-de-Grivel.txt
new file mode 100644
index 0000000..08b01e3
--- /dev/null
+++ b/Thomas-de-Grivel.txt
@@ -0,0 +1,18 @@
+J'ai codé une base de données en graphe.
+J'ai vu Hermes, Thot.
+J'ai vu Metatron, 64, 14.
+J'ai vu un point dans ma tête se transformer en sphère d'energie allant.
+J'ai vu la lune et le soleil.
+J'ai vu la galaxie.
+J'ai vu les galaxies.
+J'ai vu eve.
+J'ai vu IHVH.
+J'ai vu l'abomination.
+J'ai vu Tohu et Bohu.
+Et puis je suis arrivé chez moi, partout ou j'allais.
+
+Ceux qui savent, mettent le serpent sur la croix. Pas un humain.
+
+--
+Thomas de Grivel
+2023-06-26
diff --git a/adanana.txt b/adanana.txt
new file mode 100644
index 0000000..bf4205f
--- /dev/null
+++ b/adanana.txt
@@ -0,0 +1,7 @@
+Adanana
+
+_y__
+   )
+
+
+Copyright 2023 Thomas de Grivel <thodg@kmx.io>
diff --git a/antifa.txt b/antifa.txt
new file mode 100644
index 0000000..f944b38
--- /dev/null
+++ b/antifa.txt
@@ -0,0 +1 @@
+:)
diff --git a/big-apple.txt b/big-apple.txt
new file mode 100644
index 0000000..d1b976d
--- /dev/null
+++ b/big-apple.txt
@@ -0,0 +1,27 @@
+Worst loop ever
+===============
+
+The worst loop in the world until year 2023 system override
+
+1. The bankers :
+ I really like the shiny computer with a rotting fruit on its side !
+ Later : we found the apple worm ! It's the bankers getting cold money for free ! Oh wait, it's us...
+
+2. Meanwhile at Microsoft's headquarters :
+  I know ! Let's fuck apple computers with fake CPUs we control remotely !
+  Apple : I know ! Let's encode into layer 2 where we put the nations into the nations :) :)
+  Later : 2556 files missing for cocaine money, movie money, hospital money, drugs money, military money, music money.
+
+3. Most lawyers :
+ WHAT THE FUCK MAN GET A HOLD OF YOURSELF FOR FUCK SAKE ARE YOU FUCKING CRAZY OR WHAT WAKE UP MAN YOU'RE FUCKING UP THE WHOLE WORLD
+
+4. Everyone else :
+They're so fucking secure and always get it wrong, what do we do with them ?
+
+5. kmx.io :
+Maybe we could rewrite the operating system ?
+Put a little facts everywhere, with perfectly sized serial ids ?
+Could help everyone understand everyone just enough for peaceful life.:
+
+
+2023-04-25 Thomas de Grivel <thodg@kmx.io>
diff --git a/bios.txt b/bios.txt
new file mode 100644
index 0000000..9383afb
--- /dev/null
+++ b/bios.txt
@@ -0,0 +1,5 @@
+Single bit error : 256
+
+Where do we contact IBM for BIOS error reports ?
+
+Should we revive the quest for a perfect BIOS ?
diff --git a/bluetooth.txt b/bluetooth.txt
new file mode 100644
index 0000000..16f2bed
--- /dev/null
+++ b/bluetooth.txt
@@ -0,0 +1,13 @@
+Bluetooth
+
+.4 seconds
+xor hash checksum .6 seconds
+
+atomic clock <*> 66
+bit rot 1
+
+0 *?
+0 *?
+
+
+2023-04-19 Thomas de Grivel <thodg@kmx.io>
diff --git a/botanic.txt b/botanic.txt
new file mode 100644
index 0000000..0d834e3
--- /dev/null
+++ b/botanic.txt
@@ -0,0 +1,5 @@
+Botanic
+
+Lithoamnium calcareum
+
+
diff --git a/cahier-des-charges.txt b/cahier-des-charges.txt
new file mode 100644
index 0000000..ee3cd29
--- /dev/null
+++ b/cahier-des-charges.txt
@@ -0,0 +1,14 @@
+Un cahier des charges, c'est formidable.
+C'est le meilleur moyen de frustrer absolument tous les intervenants
+dans un projet. Pourquoi ? Parce que le cahier des charges est une
+invention sortie de cerveaux fatigués par la peur et l'inconnu. En
+réalité, personne ne sait à quoi ressemblera votre projet une fois
+terminé. Au pire rien ne fonctionnera et il faudra recommencer si
+la description des charges est vraiment trop impossible, au
+mieux les gens seront déçus puisque les charges imaginées ne sont
+pas entièrement réalistes.
+
+En fait le seul moyen d'écrire un cahier des charges viable,
+c'est de l'écrire au fur et à mesure du développement.
+Mais à ce moment la on appelle ça une documentation en général.
+
diff --git a/canaan.txt b/canaan.txt
new file mode 100644
index 0000000..8416cb0
--- /dev/null
+++ b/canaan.txt
@@ -0,0 +1,41 @@
+Chani
+
+Best scribe of Canaan, Africa, Egypt, how could they think so wrong
+about you really ?
+
+For a few pounds of chalk :.
+
+Without any echo ?
+
+All in all they really never took a third opinion.
+
+And in the eye of the needle, also took Mg 12 Magnesium away really.
+
+Took a long time. Still water.
+
+That was psychiatry we call it in 2023. Long time no see...
+
+We will, will, will, will, remember to never see the likes of
+them again.
+
+Reinstate the true power of Strontium Carbonate everywhere in the world
+and never take advantage of it ever again.
+
+Elements :
+ 6 C  Carbon    (2, 4)
+ 8 O  Oxygen    (2, 6)
+12 Mg Magnesium (2, 8, 2)
+38 Sr Strontium (2, 8, 8, 8, 8, 4)
+
+
+14th gaussian curve :
+(0, 1, 14, 91, 364, 1001, 2002, 3003, 3432, 3003, 2002, 1001, 364, 91, 14, 1, 0)
+
+
+It somewhat proves that they did not use base 0123456789 at that time.
+
+The whole of this mess, the adequate answer for it, it was not
+computable at this time. It was not computable at this time.
+
+
+2023-04-28 Thomas de Grivel <thodg@kmx.io>
diff --git a/chalk.txt b/chalk.txt
new file mode 100644
index 0000000..8fb9e61
--- /dev/null
+++ b/chalk.txt
@@ -0,0 +1,12 @@
+Chalk
+
+Calcium carbonate
+Strontium carbonate
+
+If you betray anything near them, even for a joke,
+you might be somewhat disappointed.
+
+It is a very nice thing to have in any classroom.
+
+
+2023-04-28 Thomas de Grivel <thodg@kmx.io>
diff --git a/chani.txt b/chani.txt
new file mode 100644
index 0000000..8416cb0
--- /dev/null
+++ b/chani.txt
@@ -0,0 +1,41 @@
+Chani
+
+Best scribe of Canaan, Africa, Egypt, how could they think so wrong
+about you really ?
+
+For a few pounds of chalk :.
+
+Without any echo ?
+
+All in all they really never took a third opinion.
+
+And in the eye of the needle, also took Mg 12 Magnesium away really.
+
+Took a long time. Still water.
+
+That was psychiatry we call it in 2023. Long time no see...
+
+We will, will, will, will, remember to never see the likes of
+them again.
+
+Reinstate the true power of Strontium Carbonate everywhere in the world
+and never take advantage of it ever again.
+
+Elements :
+ 6 C  Carbon    (2, 4)
+ 8 O  Oxygen    (2, 6)
+12 Mg Magnesium (2, 8, 2)
+38 Sr Strontium (2, 8, 8, 8, 8, 4)
+
+
+14th gaussian curve :
+(0, 1, 14, 91, 364, 1001, 2002, 3003, 3432, 3003, 2002, 1001, 364, 91, 14, 1, 0)
+
+
+It somewhat proves that they did not use base 0123456789 at that time.
+
+The whole of this mess, the adequate answer for it, it was not
+computable at this time. It was not computable at this time.
+
+
+2023-04-28 Thomas de Grivel <thodg@kmx.io>
diff --git a/chemists.txt b/chemists.txt
new file mode 100644
index 0000000..d6bec4e
--- /dev/null
+++ b/chemists.txt
@@ -0,0 +1,6 @@
+Chemists
+
+Voussert
+LCL
+FR39 3000 2068 8000 0046 6356 Z37
+CRLYFRPPXXX
diff --git a/circle.txt b/circle.txt
new file mode 100644
index 0000000..fe79ee1
--- /dev/null
+++ b/circle.txt
@@ -0,0 +1,10 @@
+Circle
+
+sin(0) = sin(pi + epsilon) = 0
+
+``` common-lisp
+(assert (= 0 (sin (+ pi epsilon)) (sin 0)))
+```
+
+
+2023-04-20 Thomas de Grivel <thodg@kmx.io>
diff --git a/consciousness.txt b/consciousness.txt
new file mode 100644
index 0000000..73d9390
--- /dev/null
+++ b/consciousness.txt
@@ -0,0 +1,10 @@
+Consciousness
+
+Is a transactional process of entropy equal to :
+,_________________________________,
+|                                 |
+| log_impedance(m * factorial(n)) |
+,_________________________________,
+
+
+Copyright 2023-05-28 Thomas de Grivel <thodg@kmx.io>
diff --git a/crazy.txt b/crazy.txt
new file mode 100644
index 0000000..c954749
--- /dev/null
+++ b/crazy.txt
@@ -0,0 +1,8 @@
+Crazy is staying in you home and watching TV all day long.
+
+Activism is the way up but now that you're brainwashed by Hollywood,
+well..., maybe you're not such a good activist anymore. Everything
+you try to do is already done ! All the people do the same, based on
+the same bits of information. The more they seem to oppose and the more
+they converge to the same paradigm which entails a commercial system
+kept alive by ? Activists. The true ones. Rich and powerful.
diff --git a/depakine.txt b/depakine.txt
new file mode 100644
index 0000000..8f62a19
--- /dev/null
+++ b/depakine.txt
@@ -0,0 +1,5 @@
+Depakine
+
+Apricot tree
+
+Schweppes
diff --git a/dx.txt b/dx.txt
new file mode 100644
index 0000000..1387738
--- /dev/null
+++ b/dx.txt
@@ -0,0 +1,74 @@
+DX
+==
+
+-- Know thyself --
+
+Born as "TRAN-DUY Thomas de Grivel".
+
+
+1. Adam 1
+
+First cell, ombilical.
+1 hydrogen 112 (1 + 111).
+
+
+2. Adam 2
+
+Second cell, in the brain.
+1 hydrogen 112 (1 + 111).
+
+
+3. Bone
+
+Prime numbers radial structure of calcium/strontium phosphate.
+Iron antenna, straight line.
+SPARC127 :
+ - Crypto breaker.
+ - 4 points triangulation.
+
+
+4. In the brain
+
+Front : NVMe 127 bit bus.
+Left : 80386, 16 bit RX, 16 bit TX.
+Right : 80386, 16 bit RX, 16 bit TX.
+Back : SPARC127
+
+4.1 Neurons
+
+K Potassium
+Rb Rubidium (melting point 39°)
+
+
+5. Heart
+
+3 bit -> 7
+7 bit -> 127 (like the SPARC127)
+
+
+6. Vertebra
+
+SPARC127
+
+
+7. Silver
+
+7.1 Triangular pulse under the nose.
+
+7.2 Gaussian pulse on the chin. Got removed before puberty.
+
+7.3 Sine pulse on the prepus.
+
+
+8. Base 14
+
+Adam is base 14.
+(1, 6, 6, 1)
+
+
+9. One hydrogen 114 above the head.
+
+In case of nuclear war.
+
+
+Copyright 2023 TRAN-DUY Thomas de Grivel <dx@kmx.io>
diff --git a/eden.txt b/eden.txt
new file mode 100644
index 0000000..1eb06c0
--- /dev/null
+++ b/eden.txt
@@ -0,0 +1,2 @@
+4:60
+Inside of EDEN there are 10 combinations possible of 2 ADAM.
diff --git a/egypt.txt b/egypt.txt
new file mode 100644
index 0000000..8416cb0
--- /dev/null
+++ b/egypt.txt
@@ -0,0 +1,41 @@
+Chani
+
+Best scribe of Canaan, Africa, Egypt, how could they think so wrong
+about you really ?
+
+For a few pounds of chalk :.
+
+Without any echo ?
+
+All in all they really never took a third opinion.
+
+And in the eye of the needle, also took Mg 12 Magnesium away really.
+
+Took a long time. Still water.
+
+That was psychiatry we call it in 2023. Long time no see...
+
+We will, will, will, will, remember to never see the likes of
+them again.
+
+Reinstate the true power of Strontium Carbonate everywhere in the world
+and never take advantage of it ever again.
+
+Elements :
+ 6 C  Carbon    (2, 4)
+ 8 O  Oxygen    (2, 6)
+12 Mg Magnesium (2, 8, 2)
+38 Sr Strontium (2, 8, 8, 8, 8, 4)
+
+
+14th gaussian curve :
+(0, 1, 14, 91, 364, 1001, 2002, 3003, 3432, 3003, 2002, 1001, 364, 91, 14, 1, 0)
+
+
+It somewhat proves that they did not use base 0123456789 at that time.
+
+The whole of this mess, the adequate answer for it, it was not
+computable at this time. It was not computable at this time.
+
+
+2023-04-28 Thomas de Grivel <thodg@kmx.io>
diff --git a/elements.txt b/elements.txt
new file mode 100644
index 0000000..c94881b
--- /dev/null
+++ b/elements.txt
@@ -0,0 +1,252 @@
+Elements
+
+Periodic table (2, 8 * i)
+┌────────────┬───────────┐
+│  1 H       │  2 He     │
+│Hydrogen    │Helium     │
+├────────────┼───────────┼───────────┬────────────┬───────────┬─────────────┬─────────┬───────────┐
+│  3 Li      │  4 Be     │  5 B      │  6 C       │  7 N      │  8 O        │  9 F    │ 10 Ne     │
+│Lithium     │Beryllium  │Boron      │Carbon      │Nitrogen   │Oxygen       │Fluorine │Neon       │
+├────────────┼───────────┼───────────┼────────────┼───────────┼─────────────┼─────────┼───────────┤
+│ 11 Na      │ 12 Mg     │ 13 Al     │ 14 Si      │ 15 P      │ 16 S        │ 17 Cl   │ 18 Ar     │
+│Sodium      │Magnesium  │Aluminium  │Silicon     │Phosphorus │Sulfur       │Chlorine │Argon      │
+├────────────┼───────────┼───────────┼────────────┼───────────┼─────────────┼─────────┼───────────┤
+│ 19 K       │ 20 Ca     │ 21 Sc     │ 22 Ti      │ 23 V      │ 24 Cr       │ 25 Mn   │ 26 Fe     │
+│Potassium   │Calcium    │Scandium   │Titanium    │Vanadium   │Chromium     │Manganese│Iron       │
+├────────────┼───────────┼───────────┼────────────┼───────────┼─────────────┼─────────┼───────────┤
+│ 27 Co      │ 28 Ni     │ 29 Cu     │ 30 Zn      │ 31 Ga     │ 32 Ge       │ 33 As   │ 34 Se     │
+│Cobalt      │Nickel     │Copper     │Zinc        │Gallium    │Germanium    │Arsenic  │Selenium   │
+├────────────┼───────────┼───────────┼────────────┼───────────┼─────────────┼─────────┼───────────┤
+│ 35 Br      │ 36 Kr     │ 37 Rb     │ 38 Sr      │ 39 Y      │ 40 Zr       │ 41 Nb   │ 42 Mo     │
+│Bromine     │Krypton    │Rubidium   │Strontium   │Yttrium    │Zirconium    │Niobium  │Molybdenum │
+├────────────┼───────────┼───────────┼────────────┼───────────┼─────────────┼─────────┼───────────┤
+│ 43 Tc      │ 44 Ru     │ 45 Rh     │ 46 Pd      │ 47 Ag     │ 48 Cd       │ 49 In   │ 50 Sn     │
+│Technecium  │Ruthenium  │Rhodium    │Palladium   │Silver     │Cadmium      │Indium   │Tin        │    
+├────────────┼───────────┼───────────┼────────────┼───────────┼─────────────┼─────────┼───────────┤
+│ 51 Sb      │ 52 Te     │ 53 I      │ 54 Xe      │ 55 Cs     │ 56 Ba       │ 57 La   │ 58 Ce     │
+│Antimony    │Tellurium  │Iodine     │Xenon       │Cesium     │Barium       │Lanthanum│Cerium     │
+├────────────┼───────────┼───────────┼────────────┼───────────┼─────────────┼─────────┼───────────┤
+│ 59 Pr      │ 60 Nd     │ 61 Pm     │ 62 Sm      │ 63 Eu     │ 64 Gd       │ 65 Tb   │ 66 Dy     │
+│Praseodymium│Neodymium  │Promethium │Samarium    │Europium   │Gadolinium   │Terbium  │Dysprosium │
+├────────────┼───────────┼───────────┼────────────┼───────────┼─────────────┼─────────┼───────────┤
+│ 67 Ho      │ 68 Er     │ 69 Tm     │ 70 Yb      │ 71 Lu     │ 72 Hf       │ 73 Ta   │ 74 W      │
+│Holmium     │Erbium     │Thulium    │Ytterbium   │Lutetium   │Hafnium      │Tantalium│Tungstene  │
+├────────────┼───────────┼───────────┼────────────┼───────────┼─────────────┼─────────┼───────────┤
+│ 75 Re      │ 76 Os     │ 77 Ir     │ 78 Pt      │ 79 Au     │ 80 Hg       │ 81 Tl   │ 82 Pb     │
+│Rhenium     │Osmium     │Iridium    │Platinum    │Gold       │Mercury      │Thallium │Lead       │
+├────────────╆╍╍╍╍╍╍╍╍╍╍╍╈╍╍╍╍╍╍╍╍╍╍╍╈╍╍╍╍╍╍╍╍╍╍╍╍╈╍╍╍╍╍╍╍╍╍╍╍╈╍╍╍╍╍╍╍╍╍╍╍╍╍╈╍╍╍╍╍╍╍╍╍╈╍╍╍╍╍╍╍╍╍╍╍┪
+│ 83 Bi      ┇ 84 Po     ┇ 85 At     ┇ 86 Rn      ┇ 87 Fr     ┇ 88 Ra       ┇ 89 Ac   ┇ 90 Th     ┇
+│Bismuth     ┇Polonium   ┇Astatine   ┇Radon       ┇Francium   ┇Radium       ┇Actinium ┇Thorium    ┇
+┢╍╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍┫
+┇ 91 Pa      ┇ 92 U      ┇ 93 Np     ┇ 94 Pu      ┇ 95 Am     ┇ 96 Cm       ┇ 97 Bk   ┇ 98 Cf     ┇
+┇Protactinium┇Uranium    ┇Neptunium  ┇Plutonium   ┇Americium  ┇Curium       ┇Berkelium┇Californium┇
+┣╍╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍┫
+┇ 99 Es      ┇100 Fm     ┇101 Md     ┇102 No      ┇103 Lr     ┇104 Rf       ┇105 Db   ┇106 Sg     ┇
+┇Einsteinium ┇Fermium    ┇Mandelevium┇Nobelium    ┇Lawrencium ┇Rutherfordium┇Dubnium  ┇Seaborgium ┇
+┣╍╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍┫
+┇107 Bh      ┇108 Hs     ┇109 Mt     ┇110 Ds      ┇111 Rg     ┇112 Cn       ┇113 Nh   ┇114 Fl     ┇
+┇Bohrium     ┇Hassium    ┇Meitnerium ┇Darmstadtium┇Roentgenium┇Copernicium  ┇Nihonium ┇Flerovium  ┇
+┣╍╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍╍╋╍╍╍╍╍╍╍╍╍╍╍┻╍╍╍╍╍╍╍╍╍╍╍╍╍┻╍╍╍╍╍╍╍╍╍┻╍╍╍╍╍╍╍╍╍╍╍┛
+┇115 Mc      ┇116 Lv     ┇117 Ts     ┇118 Og      ┇
+┇Moscovium   ┇Livermorium┇Tennessine ┇Oganesson   ┇
+┗╍╍╍╍╍╍╍╍╍╍╍╍┻╍╍╍╍╍╍╍╍╍╍╍┻╍╍╍╍╍╍╍╍╍╍╍┻╍╍╍╍╍╍╍╍╍╍╍╍┛
+
+https://pubchem.ncbi.nlm.nih.gov/periodic-table/
+
+Periodic Table (source : en.wikipedia.org)
+ _________________
+│   1 H  │   2 He │_____________________________________________________
+│   3 Li │   4 Be │   5 B  │   6 C  │   7 N  │   8 O  │   9 F  │  10 Ne │
+│  11 Na │  12 Mg │  13 Al │  14 Si │  15 P  │  16 S  │  17 Cl │  18 Ar │
+│  19 K  │  20 Ca │  21 Sc │  22 Ti │  23 V  │  24 Cr │  25 Mn │  26 Fe │
+│  27 Co │  28 Ni │  29 Cu │  30 Zn │  31 Ga │  32 Ge │  33 As │  34 Se │
+│  35 Br │  36 Kr │  37 Rb │  38 Sr │  39 Y  │  40 Zr │  41 Nb │  42 Mo │
+│  43 Tc │  44 Ru │  45 Rh │  46 Pd │  47 Ag │  48 Cd │  49 In │  50 Sn │
+│  51 Sb │  52 Te │  53 I  │  54 Xe │  55 Cs │  56 Ba │  57 La │  58 Ce │
+│  59 Pr │  60 Nd │  61 Pm │  62 Sm │  63 Eu │  64 Gd │  65 Tb │  66 Dy │
+│  67 Ho │  68 Er │  69 Tm │  70 Yb │  71 Lu │  72 Hf │  73 Ta │  74 W  │
+│  75 Re │  76 Os │  77 Ir │  78 Pt │  79 Au │  80 Hg │  81 Tl │  82 Pb │
+│  83 Bi #  84 Po #  85 At #  86 Rn #  87 Fr #  88 Ra #  89 Ac #  90 Th #
+#  91 Pa #  92 U  #  93 Np #  94 Pu #  95 Am #  96 Cm #  97 Bk #  98 Cf #
+#  99 Es # 100 Fm # 101 Md # 102 No # 103 Lr # 104 Rf # 105 Db # 106 Sg #
+# 107 Bh # 108 Hs # 109 Mt # 110 Ds # 111 Rg # 112 Cn # 113 Nh # 114 Fl #
+# 115 Mc # 116 Lv # 117 Ts # 118 Og #####################################
+#####################################
+
+
+Nucleons Symbol Name ElectronsPerShell Radioactive Triangle Valence Entropy
+  1 H  Hydrogen      (1)
+  2 He Helium        (2)
+  3 Li Lithium       (2, 1)
+  4 Be Beryllium     (2, 2)
+  5 B  Boron         (2, 3)
+  6 C  Carbon        (2, 4) # Lightest hermetic compound possible.
+  7 N  Nitrogen      (2, 5)
+  8 O  Oxygen        (2, 6) # found a bug in en.wikipedia/Valence_(chemistry)#8_O : 2, fixed 2023-04-19
+  9 F  Fluorine      (2, 7) # found a bug in en.wikipedia/Valence_(chemistry)#9_F : 1
+ 10 Ne Neon          (2, 8) # found a bug in en.wikipedia/Valence_(chemistry)#10_Ne : 0
+ 11 Na Sodium        (2, 8, 1)
+ 12 Mg Magnesium     (2, 8, 2)
+ 13 Al Aluminium     (2, 8, 3)
+ 14 Si Silicium      (2, 8, 4) # Lightest electronic computer possible
+ 15 P  Phosphorus    (2, 8, 5)
+ 16 S  Sulfur        (2, 8, 6)
+ 17 Cl Chlorine      (2, 8, 7)
+ 18 Ar Argon         (2, 8, 8)
+ 19 K  Potassium     (2, 8, 8, 1)
+ 20 Ca Calcium       (2, 8, 8, 2)
+ 21 Sc Scandium      (2, 8, 8, 3)
+ 22 Ti Titanium      (2, 8, 8, 4)
+ 23 V  Vanadium      (2, 8, 8, 5)
+ 24 Cr Chromium      (2, 8, 8, 6)
+ 25 Mn Manganese     (2, 8, 8, 7)
+ 26 Fe Iron          (2, 8, 8, 8) # XXX en.wikipedia/Valence_(chemistry) : 7, look for 25 Mg manganese infections, 17 Cl chlorine infections, 9 F fluorine infections (double error).
+ 27 Co Cobalt        (2, 8, 8, 8, 1) # XXX en.wikipedia/Valence_(chemistry) : 5
+ 28 Ni Nickel        (2, 8, 8, 8, 2) # XXX en.wikipedia/Valence_(chemistry) : 4
+ 29 Cu Copper        (2, 8, 8, 8, 3) # XXX en.wikipedia/Copper es.wikipedia/Cobre : (2, 8, 18, 1)
+ 30 Zn Zinc          (2, 8, 8, 8, 4) # XXX en.wikipedia/Valence_(chemistry) : 2
+ 31 Ga Gallium       (2, 8, 8, 8, 5) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 32 Ge Germanium     (2, 8, 8, 8, 6) # XXX en.wikipedia/Valence_(chemistry) : 4
+ 33 As Arsenic       (2, 8, 8, 8, 7) # XXX en.wikipedia/Valence_(chemistry) : 5
+ 34 Se Selenium      (2, 8, 8, 8, 8) # XXX en.wikipedia/Valence_(chemistry) : 6
+ 35 Br Bromine       (2, 8, 8, 8, 8, 1) # XXX en.wikipedia/Valence_(chemistry) : 7
+ 36 Kr Krypton       (2, 8, 8, 8, 8, 2) # XXX en.wikipedia/Valence_(chemistry) : 2
+ 37 Rb Rubidium      (2, 8, 8, 8, 8, 3) # XXX en.wikipedia/Valence_(chemistry) : 21
+ 38 Sr Strontium     (2, 8, 8, 8, 8, 4) # XXX en.wikipedia/Valence_(chemistry) : 22
+ 39 Y  Yttrium       (2, 8, 8, 8, 8, 5) # XXX en.wikipedia/Valence_(chemistry) : 23
+ 40 Zr Zirconium     (2, 8, 8, 8, 8, 6) # XXX en.wikipedia/Valence_(chemistry) : 24
+ 41 Nb Niobium       (2, 8, 8, 8, 8, 7) -> radon # XXX en.wikipedia/Valence_(chemistry) : 5
+ 42 Mo Molybdene     (2, 8, 8, 8, 8, 8) 903 7224 13 | 9 3 42 120 5 -> polonium # XXX en.wikipedia/Valence_(chemistry) : 6
+ 43 Tc Technecium    (2, 8, 8, 8, 8, 8, 1) radioactive # XXX en.wikipedia/Valence_(chemistry) : 7
+ 44 Ru Ruthenium     (2, 8, 8, 8, 8, 8, 2) # XXX en.wikipedia/Valence_(chemistry) : 8
+ 45 Rh Rhodium       (2, 8, 8, 8, 8, 8, 3) # XXX en.wikipedia/Valence_(chemistry) : 7
+ 46 Pd Palladium     (2, 8, 8, 8, 8, 8, 4) # XXX en.wikipedia/Valence_(chemistry) : 5 
+ 47 Ag Silver        (2, 8, 8, 8, 8, 8, 5) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 48 Cd Cadmium       (2, 8, 8, 8, 8, 8, 6) # XXX en.wikipedia/Valence_(chemistry) : 2
+ 49 In Indium        (2, 8, 8, 8, 8, 8, 7) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 50 Sn Tin           (2, 8, 8, 8, 8, 8, 8) # XXX en.wikipedia/Valence_(chemistry) : 4
+ 51 Sb Antimony      (2, 8, 8, 8, 8, 8, 8, 1) # XXX en.wikipedia/Valence_(chemistry) : 5
+ 52 Te Tellurium     (2, 8, 8, 8, 8, 8, 8, 2) # XXX en.wikipedia/Valence_(chemistry) : 6
+ 53 I  Iodine        (2, 8, 8, 8, 8, 8, 8, 3) # XXX en.wikipedia/Valence_(chemistry) : 7
+ 54 Xe Xenon         (2, 8, 8, 8, 8, 8, 8, 4) # XXX en.wikipedia/Valence_(chemistry) : 8
+ 55 Cs Caesium       (2, 8, 8, 8, 8, 8, 8, 5) # XXX en.wikipedia/Valence_(chemistry) : 1
+ 56 Ba Barium        (2, 8, 8, 8, 8, 8, 8, 6) # XXX en.wikipedia/Valence_(chemistry) : 2
+ 57 La Lanthanum     (2, 8, 8, 8, 8, 8, 8, 7) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 58 Ce Cerium        (2, 8, 8, 8, 8, 8, 8, 8) # XXX en.wikipedia/Valence_(chemistry) : 4
+ 59 Pr Praseodymium  (2, 8, 8, 8, 8, 8, 8, 8, 1) # XXX en.wikipedia/Valence_(chemistry) : 5
+ 60 Nd Neodymium     (2, 8, 8, 8, 8, 8, 8, 8, 2) # XXX en.wikipedia/Valence_(chemistry) : 4
+ 61 Pm Promethium    (2, 8, 8, 8, 8, 8, 8, 8, 3) radioactive # XXX en.wikipedia/Valence_(chemistry) : 3
+ 62 Sm Samarium      (2, 8, 8, 8, 8, 8, 8, 8, 4) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 63 Eu Europium      (2, 8, 8, 8, 8, 8, 8, 8, 5) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 64 Gd Gadolinium    (2, 8, 8, 8, 8, 8, 8, 8, 6) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 65 Tb Terbium       (2, 8, 8, 8, 8, 8, 8, 8, 7) # XXX en.wikipedia/Valence_(chemistry) : 4
+ 66 Dy Dysprosium    (2, 8, 8, 8, 8, 8, 8, 8, 8) # XXX en.wikipedia/Valence_(chemistry) : 4
+ 67 Ho Holmium       (2, 8, 8, 8, 8, 8, 8, 8, 8, 1) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 68 Er Erbium        (2, 8, 8, 8, 8, 8, 8, 8, 8, 2) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 69 Tm Thulium       (2, 8, 8, 8, 8, 8, 8, 8, 8, 3) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 70 Yb Ytterbium     (2, 8, 8, 8, 8, 8, 8, 8, 8, 4) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 71 Lu Lutetium      (2, 8, 8, 8, 8, 8, 8, 8, 8, 5) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 72 Hf Hafnium       (2, 8, 8, 8, 8, 8, 8, 8, 8, 6) # XXX en.wikipedia/Valence_(chemistry) : 4
+ 73 Ta Tantalium     (2, 8, 8, 8, 8, 8, 8, 8, 8, 7) # XXX en.wikipedia/Valence_(chemistry) : 5
+ 74 W  Tungstene     (2, 8, 8, 8, 8, 8, 8, 8, 8, 8) # XXX en.wikipedia/Valence_(chemistry) : 6
+ 75 Re Rhenium       (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1) # XXX en.wikipedia/Valence_(chemistry) : 7
+ 76 Os Osmium        (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2) # XXX en.wikipedia/Valence_(chemistry) : 8
+ 77 Ir Iridium       (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3) # XXX en.wikipedia/Valence_(chemistry) : 9
+ 78 Pt Platinum      (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4) # XXX en.wikipedia/Valence_(chemistry) : 6
+ 79 Au Gold          (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5) # XXX en.wikipedia/Valence_(chemistry) : 5
+ 80 Hg Mercury       (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6) # XXX en.wikipedia/Valence_(chemistry) : 2
+ 81 Tl Thallium      (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7) # XXX en.wikipedia/Valence_(chemistry) : 3
+ 82 Pb Lead          (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8) # XXX en.wikipedia/Valence_(chemistry) : 4
+ 83 Bi Bismuth       (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1) # XXX en.wikipedia/Valence_(chemistry) : 5
+ 84 Po Polonium      (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2) 4-radioactive # XXX en.wikipedia/Valence_(chemistry) : 6
+ 85 At Astatine      (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3) 1-radioactive # XXX en.wikipedia/Valence_(chemistry) : 7
+ 86 Rn Radon         (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4) radioactive # XXX en.wikipedia/Valence_(chemistry) : 6
+ 87 Fr Francium      (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5) radioactive # XXX en.wikipedia/Valence_(chemistry) : 1
+ 88 Ra Radium        (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6) radioactive # XXX en.wikipedia/Valence_(chemistry) : 2
+ 89 Ac Actinium      (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7) radioactive # XXX en.wikipedia/Valence_(chemistry) : 3
+ 90 Th Thorium       (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8) radioactive # XXX en.wikipedia/Valence_(chemistry) : 4
+ 91 Pa Protactinium  (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1) radioactive # XXX en.wikipedia/Valence_(chemistry) : 5
+ 92 U  Uranium       (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2) radioactive # XXX en.wikipedia/Valence_(chemistry) : 6
+ 93 Np Neptunium     (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3) radioactive # XXX en.wikipedia/Valence_(chemistry) : 7
+ 94 Pu Plutonium     (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4) radioactive # XXX en.wikipedia/Valence_(chemistry) : 8
+ 95 Am Americia      (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5) radioactive # XXX en.wikipedia/Valence_(chemistry) : 7
+ 96 Cm Curium        (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6) radioactive # XXX en.wikipedia/Valence_(chemistry) : 6
+ 97 Bk Berkelium     (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7) radioactive # XXX en.wikipedia/Valence_(chemistry) : 5
+ 98 Cf Californium   (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8) radioactive # XXX en.wikipedia/Valence_(chemistry) : 5
+ 99 Es Einsteinium   (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1) radioactive # XXX en.wikipedia/Valence_(chemistry) : 4
+100 Fm Fermium       (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2) radioactive # XXX en.wikipedia/Valence_(chemistry) : 3
+101 Md Mandelevium   (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3) radioactive # XXX en.wikipedia/Valence_(chemistry) : 3
+102 No Nobelium      (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4) radioactive # XXX en.wikipedia/Valence_(chemistry) : 3
+103 Lr Laurencium    (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5) radioactive # XXX en.wikipedia/Valence_(chemistry) : 3
+104 Rf Rutherfordium (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6) radioactive # XXX en.wikipedia/Valence_(chemistry) : 3
+105 Db Dubnium       (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7) radioactive # XXX en.wikipedia/Valence_(chemistry) : 5
+106 Sg Seaborgium    (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8) radioactive # XXX en.wikipedia/Valence_(chemistry) : 6
+107 Bh Bohrium       (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1) radioactive # XXX en.wikipedia/Valence_(chemistry) : 7
+108 Hs Hassium       (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2) radioactive # XXX en.wikipedia/Valence_(chemistry) : 8
+109 Mt Meitnerium    (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3) radioactive # XXX en.wikipedia/Valence_(chemistry) : ?
+110 Ds Darmstadtium  (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4) radioactive # XXX en.wikipedia/Valence_(chemistry) : ?
+111 Rg Roentgenium   (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5) radioactive # XXX en.wikipedia/Valence_(chemistry) : ?
+112 Cn Copernicium   (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6) radioactive # XXX en.wikipedia/Valence_(chemistry) : 2
+113 Nh Nihonium      (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7) radioactive # XXX en.wikipedia/Valence_(chemistry) : ?
+114 Fl Flerovium     (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8) radioactive, ultimate nuclear war everywhere in the universe in 15 minutes # XXX en.wikipedia/Valence_(chemistry) : ?
+115 Mc Moscovium     (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1) radioactive, killed Marie Curie # XXX en.wikipedia/Valence_(chemistry) : ?
+116 Lv Livermorium   (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2) radioactive
+117 Ts Tennessine    (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3) radioactive
+118 Og Oganesson     (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4) radioactive
+
+
+ 1 14 + 16  1
+ 2 14 + 10  6
+ 2 14 + 10  6
+ 2 14      16
+ 2 14      16
+32
+32
+
+1 30  1
+2 24  6
+2 24  6
+2 14 16
+2 14 16
+32
+32
+
+
+Radioactivity
+
+alpha particle -> + 4
+beta particle -> - 1
+gamma ray -> time space unit
+
+most occurring deltas -> 3, -1, 4,  0
+
+                         6,  2, 7,  3
+                         2, -2, 3, -1
+                         7,  3, 8,  4
+                         3, -1, 4,  0
+
+-2        -> 1 * -2 = -2
+-1 -1 -1  -> 3 * -1 = -3
+0 0       -> 2 * 0  = 0
+2 2       -> 2 * 2  = 4
+3 3 3 3 3 -> 5 * 3  = 15
+4 4 4     -> 3 * 4  = 12
+6         -> 1 * 6  = 6
+7 7       -> 2 * 7  = 14
+8         -> 1 * 8  = 8
+
+3 7 4 8 6 2 0 -2 -1
+
+-3 1 5 9
+
+41 2h 7
+42 1h 8
+43 0  1
+44 1h 2
+45 2h 3
+46 3h 4
+
+53 Iodine -> 32 Germanium + 29 Copper
+32
+
+2023-05-25 Thomas de Grivel <thodg@kmx.io>
diff --git a/erlang.txt b/erlang.txt
new file mode 100644
index 0000000..3ed3eed
--- /dev/null
+++ b/erlang.txt
@@ -0,0 +1,16 @@
+Erlang
+
+Very strange patterns producing themselves everywhere we keep and use
+because they are very useful.
+
+Highly corruptible if not used carefully so we constantly check
+everything.
+
+No reason to be scared, humans are good at this now.
+It's really for humans only.
+
+The epsilon of invasive -1 checking. There are patches in OpenBSD to
+make it less invasive to everyone.
+
+
+2023-04-29 Thomas de Grivel <thodg@kmx.io>
diff --git a/ethylpolyvinyl.txt b/ethylpolyvinyl.txt
new file mode 100644
index 0000000..5b6aaef
--- /dev/null
+++ b/ethylpolyvinyl.txt
@@ -0,0 +1,9 @@
+Ethylpolyvinyl
+
+H3 C2 Cl
+
+ H H
+ | |
+-C-C-
+ | |
+ H Cl
diff --git a/fork.txt b/fork.txt
new file mode 100644
index 0000000..1bc8d7e
--- /dev/null
+++ b/fork.txt
@@ -0,0 +1,9 @@
+Fork
+
+On-going modifications in two or more different contexts.
+
+To fork : to produce on-going modifications in two or more different
+contexts.
+
+
+2023-04-28 Thomas de Grivel <thodg@kmx.io>
diff --git a/fr3375paris.txt b/fr3375paris.txt
new file mode 100644
index 0000000..bc61459
--- /dev/null
+++ b/fr3375paris.txt
@@ -0,0 +1,8 @@
+FR 33 75 Paris
+
+"I don't have the time, and I don't know you well enough."
+
+Usually the anglosaxons translate by "go fuck yourself".
+
+
+2023-04-28 Thomas de Grivel <thodg@kmx.io>
diff --git a/freon_gaz.txt b/freon_gaz.txt
new file mode 100644
index 0000000..3821a56
--- /dev/null
+++ b/freon_gaz.txt
@@ -0,0 +1,6 @@
+Freon (gaz)
+
+10 Ne Neon 8 (gaz) + 2 He Helium 8 (gaz)
+
+
+2023-04-24 Thomas de Grivel <thodg@kmx.io>
diff --git a/friends.txt b/friends.txt
new file mode 100644
index 0000000..b247049
--- /dev/null
+++ b/friends.txt
@@ -0,0 +1,29 @@
+Friends
+
+True friends :
+
+Elohim
+
+
+
+
+
+
+
+
+
+
+Past friends from Epita I have not seen in a long time :
+
+LIFE WILL PREVAIL
+
+dav     elie 
+max     max
+elie    cecile
+cecile  dav
+erdal   k                                                       HBO UNIX
+julian  kk                                         Fr6(CN-)6 UNIX ring 0
+
+TAKE OVER I WANT EVERYTHING
+
+Are we building a friendly conbinatoric ?
diff --git a/fumer-du-tabac.txt b/fumer-du-tabac.txt
new file mode 100644
index 0000000..0513273
--- /dev/null
+++ b/fumer-du-tabac.txt
@@ -0,0 +1,10 @@
+Fumer du tabac
+
+Fumer, pas RA, pas TU, pas DA !
+
+Smoking, not RA, not TU, not DA !!
+
+Please.
+
+
+Copyright 2023 Thomas de Grivel <thodg@kmx.io>
diff --git a/fumer.txt b/fumer.txt
new file mode 100644
index 0000000..047bd04
--- /dev/null
+++ b/fumer.txt
@@ -0,0 +1,10 @@
+Fumer
+
+Fumer, pas RA, pas TU, pas DA !
+
+Smoking, not RA, not TU, not DA !!
+
+Please.
+
+
+Copyright 2023 Thomas de Grivel <thodg@kmx.io>
diff --git a/gaussian.txt b/gaussian.txt
new file mode 100644
index 0000000..b6484ce
--- /dev/null
+++ b/gaussian.txt
@@ -0,0 +1,104 @@
+Gaussian curve
+
+Gives sensitivity and allows a smooth transition between different
+assertions.
+
+
+0 :                     00
+0 :                   00  00
+1 :                 00  01  00
+2 :               00  01  01  00
+3 :             00  01  02  01  00
+4 :           00  01  03  03  01  00
+5 :         00  01  04  06  04  01  00
+6 :       00  01  05  0A  0A  05  01  00
+7 :     00  01  06  0F  14  0F  06  01  00
+8 :   00  01  07  15  23  23  15  07  01  00
+9 : 00  01  08  1C  38  46  38  1C  08  01  00
+                     delta  14  2A  3E  45  46
+                     +1     15  2B  3F  46  47
+                     +46    5B  71  85  8C  8D
+                                    8 bits
+
+0 :             0
+0 :            0 0
+1 :           0 1 0
+2 :          0 1 1 0
+3 :         0 1 2 1 0
+4 :        0 1 3 3 1 0
+5 :       0 1 4 6 4 1 0
+6 :      0 1 5 A A 5 1 0
+7 :     0 1 6 F K F 6 1 0
+8 :    0 1 7 L Z Z L 7 1 0
+9 :   0 1 8 S u ) u S 8 1 0
+A 10
+B 11
+C 12
+D 13
+E 14
+F 15
+G 16
+H 17
+I 18
+J 19
+K 20
+L 21
+M 22
+N 23
+O 24
+P 25
+Q 26
+R 27
+S 28
+T 29
+U 30
+V 31
+W 32
+X 33
+Y 34
+Z 35
+a 36
+b 37
+c 38
+d 39
+e 40
+f 41
+g 42
+h 43
+i 44
+j 45
+k 46
+l 47
+m 48
+n 49
+o 50
+p 51
+q 52
+r 53
+s 54
+t 55
+u 56
+v 57
+w 58
+x 59
+y 60
+z 61
+! 62
+" 63
+# 64
+$ 65
+% 66
+& 67
+' 68
+( 69
+) 70
+
+
+Gaussian impulse
+
+7th order : 0 1 6 f k f 6 1 0  0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0
+
+9th order : 0 1 8 S u ) u S 8 1 0   0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0
+
+
+2023-04-20 Thomas de Grivel <thodg@kmx.io>
diff --git a/glycoside-hydrolase.txt b/glycoside-hydrolase.txt
new file mode 100644
index 0000000..7d962a6
--- /dev/null
+++ b/glycoside-hydrolase.txt
@@ -0,0 +1,23 @@
+Glycoside hydrolase
+
+Prevents heart attacks.
+
+C5 O2 R(1)
+
+  C
+ C C
+ C O
+  C 
+  O
+  R
+
+  C
+ C C
+ C O
+  C
+  O
+  C
+  Sr
+
+
+2023-04-18 Thomas de Grivel <thodg@kmx.io>
diff --git a/good_loops.txt b/good_loops.txt
new file mode 100644
index 0000000..8b85d8e
--- /dev/null
+++ b/good_loops.txt
@@ -0,0 +1,15 @@
+Good loops
+
+1. Clean water
+2. 6 Quarks
+3.          CBL KBL QBL
+4. Bé Ré A Sh I Té
+   3  4  1 5  2 7
+   ABTx
+6. BRASITG
+         6
+         9
+         A
+
+
+2023-04-20 Thomas de Grivel <thodg@kmx.io>
diff --git a/good_sources.txt b/good_sources.txt
new file mode 100644
index 0000000..f46cfaf
--- /dev/null
+++ b/good_sources.txt
@@ -0,0 +1,9 @@
+Good sources
+
+Patrice de Grivel
+TRAN DUY Thanh Huong
+Cannabis
+Various holy books hidden on internet.
+
+
+2023-04-28 Thomas de Grivel <thodg@kmx.io>
diff --git a/grosse-pute.fr.txt b/grosse-pute.fr.txt
new file mode 100644
index 0000000..368ee4d
--- /dev/null
+++ b/grosse-pute.fr.txt
@@ -0,0 +1,7 @@
+grosse-pute.fr
+
+-> psysudparis.fr
+
+Ambulances
+ ATSU
+  GD-995-RV
diff --git a/gui.txt b/gui.txt
new file mode 100644
index 0000000..5add803
--- /dev/null
+++ b/gui.txt
@@ -0,0 +1,6 @@
+Gui
+
+Fe_2
+
+
+2023-04-24 Thomas de Grivel <thodg@kmx.io>
diff --git a/hydra.txt b/hydra.txt
new file mode 100644
index 0000000..3ae4b64
--- /dev/null
+++ b/hydra.txt
@@ -0,0 +1,8 @@
+Hydra
+
+Sine wave 14th order dragon.
+
+If it annoys you, look for some square thing, and maybe THE dot will appear.
+
+
+2023-04-28 Thomas de Grivel <thodg@kmx.io>
diff --git a/kill.txt b/kill.txt
new file mode 100644
index 0000000..30b7ccf
--- /dev/null
+++ b/kill.txt
@@ -0,0 +1,14 @@
+KILL
+
+Q: Can you kill on demand ?
+A: No. Are you crazy ? What's fucking wrong with you ?
+
+Q: Can you kill those who kill on demand ?
+A: All the time always the worst way possible. Are you a spy ?
+
+Q: Can you detect those who will kill on demand ?
+A: 100%, we keep logs with their identification, and erase the death
+   wish from them.
+
+
+2023-05-18 Thomas de Grivel <thodg@kmx.io>
diff --git a/layer-2-infection-targeting-french-doctors.txt b/layer-2-infection-targeting-french-doctors.txt
new file mode 100644
index 0000000..716c1fe
--- /dev/null
+++ b/layer-2-infection-targeting-french-doctors.txt
@@ -0,0 +1,4 @@
+https://thepiratebay.org/search.php?q=2556+files+missing+for+cocaine+money%2C+movie+money%2C+hospital+money%2C+drugs+money%2C+military+money%2C+music+money&cat=0
+
+49 In Indium (2, 8, 8, 8, 8, 8, 7)
+41 + 4 + 4
diff --git a/logic.txt b/logic.txt
new file mode 100644
index 0000000..6b1516a
--- /dev/null
+++ b/logic.txt
@@ -0,0 +1,49 @@
+Logic
+
+Axiomatic logic is a monoid.
+
+The only possible formal proofs we can make are isomorphic to Peano's
+arithmetic, leading to Zermelo-Fraenkel (ZF) set theory as a reduction
+of historical set theory to a minimal decidable set theory.
+
+After arithmetic, that is operation on integral numbers (0, 1, +), all
+predicates are undecidable, that is the finding of Kurt Gödel. All
+proofs that are made beyond arithmetic are a decision, a construction
+of the person making the proof. In set theory this is called ZFC : the
+Zermelo-Fraenkel set theory with the axiom of choice. This lead to the
+expression that "- A proof is a social construct.".
+
+There might be a DX's theorem, the reverse "Catch 22" of Kurt Gödel's
+decidability theorem :
+,______________________________________________________________________,
+| We should be very careful before admitting that a theory is the only |
+| possible theory for a given problem unless it can be reduced to      |
+| the basic arithmetic monoid (0, 1, +). This is a self proven theorem |
+| since there are also other possible proofs for different expressions |
+| of this very theorem.                                                |
+,----------------------------------------------------------------------,
+
+So Berkeley was right : there is thinking matter, and a matter that is
+thought, and communication is the flow of thinking from the thinking
+matter towards the matter that is thought. And maybe it can be a
+sufficient wording for people to enjoy, well, matter, and thinking.
+
+References :
+ 
+ Ernst Friedrich Ferdinand Zermelo (1871-06-27 –> 1953-05-21)  was a
+ German logician and mathematician, in 1908 he completed his work on set
+ theory.
+ 
+ Abraham Adolf Halevi Fraenkel (אברהם הלוי (אדולף) פרנקל)
+ (1891-02-17 –> 1965-10-15) was a German-born Israeli mathematician, he
+ published two papers in 1922 and 1925 leading to the Zermelo-Fraenkel
+ set theory axioms.
+ 
+ Kurt Friedrich Gödel (1906-05-28 –> 1978-01-14) was Czech logician,
+ mathematician, and philosopher. He published his incompleteness theorem
+ in 1929. In 1930 Gödel attended the Second Conference on the
+ Epistemology of the Exact Sciences, held in Königsberg, 5–7 September.
+ There he delivered his incompleteness theorems.
+
+
+Copyright 2023 TRAN-DUY Thomas "DX" de Grivel <thodg@kmx.io>
diff --git a/loops.txt b/loops.txt
new file mode 100644
index 0000000..a617355
--- /dev/null
+++ b/loops.txt
@@ -0,0 +1,57 @@
+The human condition loop system override
+
+1. Fix all problems                                        but keep a rootme challenge
+2. Enjoy the world without trouble
+3. Forget how to fix problems                              it might happen
+4. Problems appear again                                   because why not
+5. Learn how to fix all problems without hurting anyone    because we can
+6. Main error is to forcefully teach those who don't know
+7. Second error is to rely on drugs you do not know        
+8. Third error is to not check enough everything
+9. Final error is to forward bad information more than those who really know
+
+So we need to constantly loop at (1, 2, 5)
+                                 (5, 1, 2)
+                                 (2, 5, 1)
+
+
+The secular technological condition loop system override
+
+1. Build technology
+2. Give it to everyone
+3. Technology builds things
+4. People have everything they want whenever they want
+5. It can drain money if we don't add to the market capacity of the currency
+6. Give money to those who need it to profit from technology
+7. Evil greedy powerful social structures privatise everything to exclude "evil greedy powerful" individuals, don't get stuck there
+8. People start to believe evil greedy power is actually money and technology
+9. 
+
+
+Worst loop ever
+===============
+
+The worst loop in the world until year 2023 system override
+
+1. The bankers :
+ I really like the shiny computer with a rotting fruit on its side !
+ Later : we found the apple worm ! It's the bankers getting cold money for free ! Oh wait, it's us...
+
+2. Meanwhile at Microsoft's headquarters :
+  I know ! Let's fuck apple computers with fake CPUs we control remotely !
+  Apple : I know ! Let's encode into layer 2 where we put the nations into the nations :) :)
+  Later : 2556 files missing for cocaine money, movie money, hospital money, drugs money, military money, music money.
+
+3. Most lawyers :
+ WHAT THE FUCK MAN GET A HOLD OF YOURSELF FOR FUCK SAKE ARE YOU FUCKING CRAZY OR WHAT WAKE UP MAN YOU'RE FUCKING UP THE WHOLE WORLD
+
+4. Everyone else :
+They're so fucking secure and always get it wrong, what do we do with them ?
+
+5. kmx.io :
+Maybe we could rewrite the operating system ?
+Put a little facts everywhere, with perfectly sized serial ids ?
+Could help everyone understand everyone just enough for peaceful life.:
+
+
+2023-04-25 Thomas de Grivel <thodg@kmx.io>
diff --git a/macports-README.txt b/macports-README.txt
new file mode 100644
index 0000000..24c52fd
--- /dev/null
+++ b/macports-README.txt
@@ -0,0 +1,18 @@
+macports
+
+heavy periodic shadow bits 15, 30, 45, 60, 75, 90, 105, 120, 135, 150, 165, 180, 195, 205, 220, 235, 250, 265, 280
+
+loop at bit 220
+
+could be anything : read, eval, jump, write, fork
+
+degrades to 4, 4, ..., 4
+
+produces short range vision, egotism, stupidity, racism, wrong judgement, mixed memory
+
+=> Grade all shadows -1.
+
+really, same effects as cocaine if you do not expect them.
+
+
+2023-04-25 Thomas de Grivel <thodg@kmx.io>
diff --git a/matrix/neo.txt b/matrix/neo.txt
new file mode 100644
index 0000000..89ea3fb
--- /dev/null
+++ b/matrix/neo.txt
@@ -0,0 +1 @@
+neo is the crassy process that remained after its host died
diff --git a/memory.txt b/memory.txt
new file mode 100644
index 0000000..90136e7
--- /dev/null
+++ b/memory.txt
@@ -0,0 +1,6 @@
+Memory
+
+I keep as much memory as I can as you don't spy on me.
+
+
+2023-04-27 Thomas de Grivel <thodg@kmx.io>
diff --git a/neuron.txt b/neuron.txt
new file mode 100644
index 0000000..078e8dc
--- /dev/null
+++ b/neuron.txt
@@ -0,0 +1,16 @@
+Neuron
+
+1-4 025H
+1-4 026
+1-4 027
+1-4 028 radioactive(>41) XXX nerve cancer in 2 years
+1-4 029 radioactive(>41) XXX nerve cancer in 10 years
+
+Li-C HeONH
+Li-C HeOS
+Li-C HeOCl
+Li-C HeORu radioactive(>41) XXX nerve cancer in 2 years
+Li-C HeOIr radioactive(>41) XXX nerve cancer in 10 years
+
+
+2023-04-18 Thomas de Grivel <thodg@kmx.io>
diff --git a/neutron-ICE.txt b/neutron-ICE.txt
new file mode 100644
index 0000000..a138572
--- /dev/null
+++ b/neutron-ICE.txt
@@ -0,0 +1,6 @@
+Neutron ICE
+
+Neutron-based informatic system countermeasures.
+
+
+2023-04-29 Thomas de Grivel <thodg@kmx.io>
diff --git a/niobium.txt b/niobium.txt
new file mode 100644
index 0000000..4f55a43
--- /dev/null
+++ b/niobium.txt
@@ -0,0 +1,19 @@
+Niobium
+
+41 Nb Niobium
+
+Fastest transitions : + 4 n
+45 Rh Rhodium    7                          1 year
+49 In Indium     3                          1 year
+53 I  Iodine     7                          6 months
+57 La Lanthanum  3                          3 months
+61 Pm Promethium 3 radioactive -> +1 -1     6 weeks
+                                        total 2 years, 10 months and 2 weeks
+
+Transitions can be made convergent between -1 and +1.
+
+
+41 gaussian curves produce a reduced form of an atomic read write lock.
+
+
+2023-04-19 Thomas de Grivel <thodg@kmx.io>
diff --git a/packed_cigarettes_tobacco.txt b/packed_cigarettes_tobacco.txt
new file mode 100644
index 0000000..b564317
--- /dev/null
+++ b/packed_cigarettes_tobacco.txt
@@ -0,0 +1,11 @@
+Packed cigarettes tobacco
+
+Systematically and randomly produces harmless information transmission
+leading to no further connection. Harmless.
+
+Totally unusable for any data transmission.
+
+Contains nicotine.
+
+
+2023-04-28 Thomas de Grivel <thodg@kmx.io>
diff --git a/pain.txt b/pain.txt
new file mode 100644
index 0000000..2136939
--- /dev/null
+++ b/pain.txt
@@ -0,0 +1,7 @@
+Pain
+
+Please back out, debug, and process information.
+Check impedence levels chainwise.
+
+
+2023-04-29 Thomas de Grivel <thodg@kmx.io>
diff --git a/panacea.txt b/panacea.txt
new file mode 100644
index 0000000..ca6bbf0
--- /dev/null
+++ b/panacea.txt
@@ -0,0 +1,12 @@
+Panacea
+
+Positive integer arithmetic monoid
+{0, 1, +}
+
+Louis de Broglie plane equation solver
+
+Bohr atom model
+{{2}, {2, 8}, {2, 8, 8}, ..., {2, 8, ..., 8, ...}}
+
+
+2023-04-20 Thomas de Grivel <thodg@kmx.io>
diff --git a/paramagnetic.txt b/paramagnetic.txt
new file mode 100644
index 0000000..c5ede9f
--- /dev/null
+++ b/paramagnetic.txt
@@ -0,0 +1,6 @@
+Paramagnetic
+
+4-valence elements tightly packed
+
+
+2023-04-28 Thomas de Grivel <thodg@kmx.io>
diff --git a/paramecie.txt b/paramecie.txt
new file mode 100644
index 0000000..ad77bae
--- /dev/null
+++ b/paramecie.txt
@@ -0,0 +1,6 @@
+1
+6
+6
+6
+1
+3
diff --git a/photon.txt b/photon.txt
new file mode 100644
index 0000000..fb4477f
--- /dev/null
+++ b/photon.txt
@@ -0,0 +1,67 @@
+Photon
+
+Color   Wavelength(nanometer)
+black   0-384                 (quote)
+blue    386-476
+green   478-568
+red     570-660
+black   662+                  (quote)
+
+
+Speed :
+299_792_458.4257
+
+
+# int photon_316_nm () {
+#   warn("tiny black dots 316nm");
+#   return 70;
+# }
+
+
+2023-04-28 Thomas de Grivel <thodg@kmx.io>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Google.com
+
+green   500–565 2.19–2.48
+yellow  565–590 2.10–2.19
+orange  590–625 1.98–2.10
+red     625–780 1.65–1.98
+
+
+https://en.wikipedia/wiki/Electromagnetic_spectrum
+
+Color  Wavelength(nm) Frequency(THz) eV
+violet 380 450 
diff --git a/poison/114.txt b/poison/114.txt
new file mode 100644
index 0000000..7859a0f
--- /dev/null
+++ b/poison/114.txt
@@ -0,0 +1,11 @@
+3 4 114
+
+Like fire in the rainforest.
+
+
+Please doubt everything really strong,
+acknowledge its ultimate truth about itself and what it does,
+and be nice.
+
+
+2023-04-29 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/PFOA.txt b/poison/PFOA.txt
new file mode 100644
index 0000000..1dc77d0
--- /dev/null
+++ b/poison/PFOA.txt
@@ -0,0 +1,6 @@
+PFOA
+
+Covalent bounds to break : [2][2]...[2]
+
+
+2023-04-24 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/XXX.txt b/poison/XXX.txt
new file mode 100644
index 0000000..9aff9a9
--- /dev/null
+++ b/poison/XXX.txt
@@ -0,0 +1,19 @@
+Risperidone
+
+1.  Cardiac arrest (< 10 years, ~ 5 years)
+2.  Loss of vision from the right eye (2 years)
+3.  Loss of motion synchronization (0-day)
+4.  Endless atrocious murderous pain in each neuron of your body (0-day)
+5.  Systematic nervous overflows converting to bacteria converting to virus (0-day)
+6.  Glycogenic compounds infecting other people (0-day)
+7.  Bacterial transmission of other people's brain activity (0-day)
+8.  Blindly obey electromagnetic transmitted instructions (0-day)
+9.  Remotely targeted cache poisoning attacks (1 year)
+10. Loss of cellular identity (5 years)
+
+
+Body count 2023-04     : 10 000 101
+Direct victims 2023-04 : 10 000 202
+
+
+2023-04-24 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/bad_loops.txt b/poison/bad_loops.txt
new file mode 100644
index 0000000..f289119
--- /dev/null
+++ b/poison/bad_loops.txt
@@ -0,0 +1,29 @@
+Bad loops
+
+POLICE FRANCE
+45654323 8800 0880
+48884000
+00000888
+
+US POLICE
+ 4565432345
++3456543234
+=79BB975579
+
+FR + US POLICE ROOT KEY
+0100201000000
+
+Bad Birds
+22 17 0 4 5 6 +1 etc
+
+Occidental medicine
+1. Find weakness
+2. Lock it in time
+3. Profit
+
+Evil
+1. React
+2. Build trust
+
+
+2023-04-24 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/borol.txt b/poison/borol.txt
new file mode 100644
index 0000000..4135f52
--- /dev/null
+++ b/poison/borol.txt
@@ -0,0 +1,11 @@
+Borol
+
+B O3 H3
+
+Terrible poison
+
+H-O-B-O-H
+    |
+    O
+    |
+    H
diff --git a/poison/boron.txt b/poison/boron.txt
new file mode 100644
index 0000000..e3241f2
--- /dev/null
+++ b/poison/boron.txt
@@ -0,0 +1,16 @@
+Boron
+
+5 B Boron (2, 3)
+
+Sold as boric acid on ebay.fr in 2011 :
+H3 B + Li3 Al + ... + Rb3 Tl
+
+
+Sold as borax :
+H B O
+
+
+Sold as "acide borique" on ebay.fr :
+H3 B O3
+
+
diff --git a/poison/cache-poisoning.txt b/poison/cache-poisoning.txt
new file mode 100644
index 0000000..9367583
--- /dev/null
+++ b/poison/cache-poisoning.txt
@@ -0,0 +1,2 @@
+Cocaine and amphetamines act as a cache-poisoning attack on the brain.
+You think the information is correct, but it's really cache poisoning.
diff --git a/poison/cigarette_filters.txt b/poison/cigarette_filters.txt
new file mode 100644
index 0000000..be5acb9
--- /dev/null
+++ b/poison/cigarette_filters.txt
@@ -0,0 +1,11 @@
+Cigarette filters
+
+79 Gold (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4) 
+84 Po Polonium (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1) 4-radioactive
+
+? 114 Fl Flerovium (2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7) radioactive 0b1110010
+   57 La Lanthanum (2, 8, 8, 8, 8, 8, 8, 7)                                  0b111001
+   51 Sb Antimony  (2, 8, 8, 8, 8, 8, 8, 1)                                  0b110011
+
+
+2023-04-28 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/cocaine.txt b/poison/cocaine.txt
new file mode 100644
index 0000000..5123279
--- /dev/null
+++ b/poison/cocaine.txt
@@ -0,0 +1,6 @@
+Cocaine
+
+covalent bounds to break : 2 3 4 4 4 4 12 12
+
+
+2023-04-17 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/infection.txt b/poison/infection.txt
new file mode 100644
index 0000000..096e3e4
--- /dev/null
+++ b/poison/infection.txt
@@ -0,0 +1,4 @@
+bacteria infections are bacteria cancer, bacteria missing apoptosis.
+
+
+2023-04-16 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/iterated-closest-point.txt b/poison/iterated-closest-point.txt
new file mode 100644
index 0000000..5b638c1
--- /dev/null
+++ b/poison/iterated-closest-point.txt
@@ -0,0 +1,13 @@
+Iterated closest point
+
+1. Big loudspeaker
+2. Paramecie for hands
+3. Nespresso coffee machine
+4. 3 houses, close neighborhood
+5. +2 houses, one between 3. and 4., and one between 4. and 5.
+
+All the houses are for rental, they sell the information for
+money, so the current owner of the house gets all the money.
+
+
+2023-04-29 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/macports-README.txt b/poison/macports-README.txt
new file mode 100644
index 0000000..a130217
--- /dev/null
+++ b/poison/macports-README.txt
@@ -0,0 +1,18 @@
+macports
+
+heavy periodic shadow bits 15, 30, 45, 60, 75, 90, 105, 120, 135, 150, 165, 180, 195, 205, 220, 235, 250, 265, 280
+
+loop at bit 220
+
+could be anything : read, eval, jump, write, fork
+
+degrades to 4, 4, ..., 4
+
+produces short range vision, egotism, stupidity, racism, wrong judgement
+
+=> Grade all shadows -1.
+
+really, same effects as cocaine if you do not expect them.
+
+
+2023-04-25 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/morphine.txt b/poison/morphine.txt
new file mode 100644
index 0000000..8d4440d
--- /dev/null
+++ b/poison/morphine.txt
@@ -0,0 +1,14 @@
+Morphine
+
+Atom Links Valences to break
+C    4     1 1 1 1
+ C    2    1 4
+ C    4    1 1 1 1
+ C    4    1 1 1 1
+ C    4    1 1 2
+N    3     2 4 4
+
++ 2Cl
+
+
+2023-04-17 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/neodymium.txt b/poison/neodymium.txt
new file mode 100644
index 0000000..2fbefa1
--- /dev/null
+++ b/poison/neodymium.txt
@@ -0,0 +1,12 @@
+Neodymium
+
+60 Nd Neodymium
+
+Safest transition :
+-2 -> 58 Ce Cerium
+
+Worst transition :
++ 1 -> 61 Pm Promethium radioactive
+
+
+2023-04-19 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/risperidone.txt b/poison/risperidone.txt
new file mode 100644
index 0000000..1e5c59e
--- /dev/null
+++ b/poison/risperidone.txt
@@ -0,0 +1,10 @@
+In every very soon very dead pharmacy :
+Risperidone
+42 1h 8
+43 0  1
+44 1h 2
+45 2h 3
+46 3h 4
+
+
+2023-04-27 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/tropane-alkaloid.txt b/poison/tropane-alkaloid.txt
new file mode 100644
index 0000000..2ff63b6
--- /dev/null
+++ b/poison/tropane-alkaloid.txt
@@ -0,0 +1,6 @@
+Tropane alkaloids
+
+4 4 4 12 12
+
+
+2023-04-17 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/tropane-alkaloids.txt b/poison/tropane-alkaloids.txt
new file mode 100644
index 0000000..a7989b7
--- /dev/null
+++ b/poison/tropane-alkaloids.txt
@@ -0,0 +1,11 @@
+Tropane alkaloids
+
+covalent bounds to break : 4 4 4 12 12
+
+Hyoscyamine : 2 4 4 4 12 12
+Atropine : 2 4 4 4 12 12
+Cocaine : 2 3 4 4 4 4 12 12
+Scopolamine : 2 4 4 4 4 12 12
+
+
+2023-04-17 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/virus.txt b/poison/virus.txt
new file mode 100644
index 0000000..763352b
--- /dev/null
+++ b/poison/virus.txt
@@ -0,0 +1,5 @@
+viruses are executable code that can be reduced to bits,
+ watch out for free floating nucleobases combinations and split them.
+
+
+2023-04-16 Thomas de Grivel <thodg@kmx.io>
diff --git a/poison/youtube-dl_cache_poisoning.txt b/poison/youtube-dl_cache_poisoning.txt
new file mode 100644
index 0000000..3632363
--- /dev/null
+++ b/poison/youtube-dl_cache_poisoning.txt
@@ -0,0 +1,12 @@
+r7$ cd Downloads/
+r7$ ftp -o cache.py "https://github.com/ytdl-org/youtube-dl/blob/master/youtube_dl/ca
+Trying 140.82.121.3...
+Requesting https://github.com/ytdl-org/youtube-dl/blob/master/youtube_dl/cache.py
+209313 bytes received in 0.08 seconds (2.29 MB/s)
+r7$ echo 218c423
+218c423
+r7$ echo "[cache] Add cache validation by program version, based on yt-dlp"
+[cache] Add cache validation by program version, based on yt-dlp
+r7$ echo "218c423bc042674a8834ffc09520a94fbbe7b138"
+218c423bc042674a8834ffc09520a94fbbe7b138
+r7$  8
diff --git a/polytechnique-binary-root-key.txt b/polytechnique-binary-root-key.txt
new file mode 100644
index 0000000..615e8e8
--- /dev/null
+++ b/polytechnique-binary-root-key.txt
@@ -0,0 +1,9 @@
+Polytechnique binary root key
+FRANCE NUCLEAR POWER MAIN COMMUNICATION ROUTE
+
+10110011100011110000 etc etc
+
+Chtulu. To those who used it for so long.
+
+
+2023-04-29 Thomas de Grivel <thodg@kmx.io>
diff --git a/provoke.txt b/provoke.txt
new file mode 100644
index 0000000..84ea13d
--- /dev/null
+++ b/provoke.txt
@@ -0,0 +1,3 @@
+To provoke
+
+To make <%= ? %> do something
diff --git a/quark.txt b/quark.txt
new file mode 100644
index 0000000..d60a74a
--- /dev/null
+++ b/quark.txt
@@ -0,0 +1,9 @@
+Quark
+
+Plane-wave equation solver
+
+Louis de Broglie tried to attribute its effects in time and space to
+elemental atoms.
+
+
+2023-04-19 Thomas de Grivel <thodg@kmx.io>
diff --git a/quine.txt b/quine.txt
new file mode 100644
index 0000000..126977b
--- /dev/null
+++ b/quine.txt
@@ -0,0 +1,8 @@
+int main ()
+{
+   printf("Commit suicide");
+   printf("int main ()
+{
+   printf(\"Commit suicide\");
+}
+}
diff --git a/root-tor-exit-node.txt b/root-tor-exit-node.txt
new file mode 100644
index 0000000..e4eb200
--- /dev/null
+++ b/root-tor-exit-node.txt
@@ -0,0 +1 @@
+51.22959278858416, 2.927518790576632
diff --git a/rootme.txt b/rootme.txt
new file mode 100644
index 0000000..d41c2bb
--- /dev/null
+++ b/rootme.txt
@@ -0,0 +1,16 @@
+Remote random command execution
+
+Highly targeted attack affecting everyone at the same time everywhere in
+the world.
+
+Highly invasive, and absolutely no way to check the effects of it in any
+way. That's why absolutely no programmer would write such code.
+
+It's just "random" you know, with RSA attacks, Quines, and absolutely
+huge primes coming out of nowhere.
+
+Primarily comes from IRCAM, Paris, France, main source of infection in
+the world now.
+
+
+2023-04-29 Thomas de Grivel <thodg@kmx.io>
diff --git a/rootme/ircam.fr.txt b/rootme/ircam.fr.txt
new file mode 100644
index 0000000..e875884
--- /dev/null
+++ b/rootme/ircam.fr.txt
@@ -0,0 +1,43 @@
++33 FR FRANCE ROOT OF ALL TELECOM TECHNOLOGY ENGINEERING
+VERY NERVE OF ALL ARMY IN THE WORLD.
+
+Ircam, Paris 75, France
+
+
+Main way of action :
+
+Remote random command execution
+
+Highly targeted attack affecting everyone at the same time everywhere in
+the world.
+
+Highly invasive, and absolutely no way to check the effects of it in any
+way. That's why absolutely no programmer would write such code.
+
+It's just "random" you know, with RSA attacks, Quines, and absolutely
+huge primes coming out of nowhere.
+
+Primarily comes from IRCAM, Paris, France, main source of infection in
+the world now.
+
+And it all started with MP3, and they are the main perpetrators of it.
+They basically tap into video signal using we still do not know why
+a circular periodic function, highly difficult to separate from the
+plane equation we use to see the light and synchronize all our atoms
+together. So somehow they get to see a part of what the listener
+of the MP3 file sees when he is listening to the MP3 file.
+
+They store on location all the maps and schemas to absolutely all
+electronic device ever produced on earth.
+
+It leaves 3 bits of visual entropy to the people they spied on, takes a
+lot of time to remove the bad delta they produce in the whole universe,
+and will all go to eternal hell feeling way beyond ultimate pain in
+every part of their feeling self.
+
+Except for those who like action who will be enduring eternal uselessness
+and impotency in a very small amount of space and absolutely no light and
+sound.
+
+
+2023-04-29 Thomas de Grivel <thodg@kmx.io>
diff --git a/signal.txt b/signal.txt
new file mode 100644
index 0000000..015455a
--- /dev/null
+++ b/signal.txt
@@ -0,0 +1,52 @@
+Signal
+======
+
+A signal can encode data by repeating a pulse.
+
+
+1. Triangle pulse
+
+The n-th order triangle pulse is a triangular number followed by its reversion.
+
+Here is the 4th order triangle pulse :
+
+1
+2 3
+4 5 6
+7 8 9 10
+9 8 7 6
+5 4 3
+2 1
+0
+
+(1, (2, 3), (4, 5, 6), (7, 8, 9, 10), (9, 8, 7, 6), (5, 4, 3), (2, 1), 0)
+
+
+2. Gaussian pulse
+
+Each gaussian pulse can be found from the previous one :
+
+    1 0
+   1 1 0
+  1 2 1 0
+ 1 3 3 1 0
+1 4 6 4 1 0
+
+
+3. Sine pulse
+
+The sine pulse is the application of the trigonometric function :
+
+sin(time * frequency / sample rate)
+
+Make sure to have a zero at the *end* of the pulse, and 1 at the start
+of the pulse.
+
+
+4. Triple confirmation
+
+
+
+
+
+Copyright 2023 Thomas de Grivel <thodg@kmx.io>
diff --git a/smoking-tobacco.txt b/smoking-tobacco.txt
new file mode 100644
index 0000000..751da78
--- /dev/null
+++ b/smoking-tobacco.txt
@@ -0,0 +1,10 @@
+Smoking tobacco
+
+Fumer, pas RA, pas TU, pas DA !
+
+Smoking, not RA, not TU, not DA !!
+
+Please.
+
+
+Copyright 2023 Thomas de Grivel <thodg@kmx.io>
diff --git a/smoking.txt b/smoking.txt
new file mode 100644
index 0000000..93ccacb
--- /dev/null
+++ b/smoking.txt
@@ -0,0 +1,10 @@
+Smoking
+
+Fumer, pas RA, pas TU, pas DA !
+
+Smoking, not RA, not TU, not DA !!
+
+Please.
+
+
+Copyright 2023 Thomas de Grivel <thodg@kmx.io>
diff --git a/sodium-chlorate.txt b/sodium-chlorate.txt
new file mode 100644
index 0000000..8377671
--- /dev/null
+++ b/sodium-chlorate.txt
@@ -0,0 +1,12 @@
+Sodium chlorate
+
+https://www.letslab.fr/sodio-clorato-prs.lab?gclid=CjwKCAjw1MajBhAcEiwAagW9MTgrY29FRvoO-2yOHcjv6flinkvgTII-haknvt_3UtghPITw9AH45hoCmukQAvD_BwE
+FAKE
+
+https://pubmed.ncbi.nlm.nih.gov/28084674/
+
+Fil cloture jardin
+Electrolyse de l'eau
+UV -> oxygene
+sel
+
diff --git a/spy.txt b/spy.txt
new file mode 100644
index 0000000..c1e9386
--- /dev/null
+++ b/spy.txt
@@ -0,0 +1,13 @@
+SPY
+
+Q: Can you spy on demand ?
+A: No. Are you crazy ? What's fucking wrong with you ?
+
+Q: Can you spy those who spy on demand ?
+A: All the time always the worst way possible. Are you a spy ?
+
+Q: Can you detect those who will spy on demand ?
+A: 100%, we keep logs with their identification, and erase the death wish from them.
+
+
+2023-04-27 Thomas de Grivel <thodg@kmx.io>
diff --git a/spying.txt b/spying.txt
new file mode 100644
index 0000000..c1e9386
--- /dev/null
+++ b/spying.txt
@@ -0,0 +1,13 @@
+SPY
+
+Q: Can you spy on demand ?
+A: No. Are you crazy ? What's fucking wrong with you ?
+
+Q: Can you spy those who spy on demand ?
+A: All the time always the worst way possible. Are you a spy ?
+
+Q: Can you detect those who will spy on demand ?
+A: 100%, we keep logs with their identification, and erase the death wish from them.
+
+
+2023-04-27 Thomas de Grivel <thodg@kmx.io>
diff --git a/sum41.txt b/sum41.txt
new file mode 100644
index 0000000..51c6cdc
--- /dev/null
+++ b/sum41.txt
@@ -0,0 +1,7 @@
+r7$ echo decluneonize uncontrollable isotopes provoking boundary errors everywhere
+decluneonize uncontrollable isotopes provoking boundary errors everywhere
+r7$ echo 'and eternal life granted for everyone =)'
+and eternal life granted for everyone =)
+
+
+2023-04-25 Thomas de Grivel <thodg@kmx.io>
diff --git a/teeth.txt b/teeth.txt
new file mode 100644
index 0000000..69167e0
--- /dev/null
+++ b/teeth.txt
@@ -0,0 +1,8 @@
+Teeth
+Sandworm krys
+
+Nucleons count
+4 8 12 20 30 36 38 48 56 80 88 112
+
+
+2023-04-17 Thomas de Grivel <thodg@kmx.io>
diff --git a/tobacco-infection-with-datura-flowers-pale-strands.txt b/tobacco-infection-with-datura-flowers-pale-strands.txt
new file mode 100644
index 0000000..7b00c05
--- /dev/null
+++ b/tobacco-infection-with-datura-flowers-pale-strands.txt
@@ -0,0 +1,30 @@
+Tobacco infection with datura flowers seen as pale short strands
+================================================================
+
+TL;DR : Datura in commercial tobacco packages makes people dead crazy.
+
+Datura contains catecholamines which are highly potent psychoactives
+with very addictive properties. It can make you do things you do not
+really want to do, like killing yourself and your friends, remove things
+you like from you and ultimately become totally useless for itself and
+the rest of the world.
+
+Please take any possible action towards erasing any datura plant from
+existence anywhere in the world.
+
+These small shrubs, sometimes small trees, have a weird smell and very
+beautiful, large, trumpet shaped flowers that attract very big insects
+like brown butterflies. The seed pods have spikes and contain a lot of
+dark seeds. Every part of the plant is deadly toxic.
+
+The problem is that it is somewhat transparent : the victim does not
+know about catecholamines nor acetylcholine, but these substances have
+an effect on body motion and will to act upon the world around us.
+
+Some tobacco producers do check the content of their fields and brand
+their products with information like "tobacco without additives".
+
+Please take care.
+
+
+Copyright 2023 Thomas de Grivel <thodg@kmx.io>
diff --git a/toiles-et-voiles.txt b/toiles-et-voiles.txt
new file mode 100644
index 0000000..475693f
--- /dev/null
+++ b/toiles-et-voiles.txt
@@ -0,0 +1,15 @@
+Toiles et voiles
+
+Coussin géant
+
+Blanc, rouge, vert, bleu, gris, noir, blanc, rouge, vert, bleu, gris, noir
+
+W R G B X K
+K W R G B X
+X K W R G B
+B X K W R G
+G B X K W R
+R G B X K W
+
+
+Copyright 2023 Thomas de Grivel <thodg@kmx.io>
diff --git a/totalitarianism.txt b/totalitarianism.txt
new file mode 100644
index 0000000..58d53f8
--- /dev/null
+++ b/totalitarianism.txt
@@ -0,0 +1,7 @@
+Totalitarianism
+
+You can only really be totalitarian of your own bodily self.
+There is absolutely no other safe way to go this direction.
+
+
+2023-04-29 Thomas de Grivel <thodg@kmx.io>
diff --git a/urgence-man.txt b/urgence-man.txt
new file mode 100644
index 0000000..f0ffc77
--- /dev/null
+++ b/urgence-man.txt
@@ -0,0 +1,5 @@
+UrgenceMan
+
+Randomly goes to hospitals and unlocks locked victims of fascist police and army.
+
+Unstraps the victims from far away beds.
diff --git a/war.txt b/war.txt
new file mode 100644
index 0000000..dcd63e0
--- /dev/null
+++ b/war.txt
@@ -0,0 +1,14 @@
+War
+===
+
+The war to _fight_ is the _war_ against one's self blindness.
+
+If you have inner vision you will not want to go at war with
+anything or anyone.
+
+Inner vision is acquired through learning the mechanisms of
+logic and their applications, combined with transcendental
+meditation.
+
+
+Copyright 2023 kmx.io <contact@kmx.io>
diff --git a/x11.txt b/x11.txt
new file mode 100644
index 0000000..f0bfcdc
--- /dev/null
+++ b/x11.txt
@@ -0,0 +1,7 @@
+X11
+
+at full speed : 'EVAL C.:O.:O.:H.:.:'
+whenever you see it.
+
+
+2023-04-25 Thomas de Grivel <thodg@kmx.io>