summaryrefslogtreecommitdiff
path: root/index.xml
blob: 45b219fe883cd1e2db719f60cbd042a9d795c974 (plain)
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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Homepage on dd</title>
    <link>https://drainerdomain.xyz/</link>
    <description>Recent content in Homepage on dd</description>
    <language>Page(/_index.md)</language>
    <lastBuildDate>Tue, 14 Dec 2021 13:52:07 -0300</lastBuildDate><atom:link href="https://drainerdomain.xyz/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>POV on Cryptocurrency and Its Future</title>
      <link>https://drainerdomain.xyz/posts/pov-on-cryptocurrency-and-its-future/</link>
      <pubDate>Tue, 13 Dec 2022 18:13:05 -0300</pubDate>
      
      <guid>https://drainerdomain.xyz/posts/pov-on-cryptocurrency-and-its-future/</guid>
      <description>&lt;p&gt;Cryptocurrency is not what it seems to be. If you read Bitcoin&amp;rsquo;s whitepaper, you
could tell that there is a divorce between the prognostic and the current. A simple
conclusion should come out from observing the practices and motives of
the gross majority of holders in the cryptosphere, where only a minute portion mantain
certain coherency between the use and the fundamental idea. Generally, the introductory motives are mere capital
gains which are hidden behind a big curtain of cope and lies. The most avid crypto maximalists,
being the most obnoxious and credulous people in the circle, like to throw phrases out in the
air such as &amp;ldquo;economical independence&amp;rdquo;, &amp;ldquo;financial sovereignty&amp;rdquo; and &amp;ldquo;decentralized transactions&amp;rdquo;, while
arguing that they are fighting and more so winning a fight against the traditional banks and the
government. Sincerely, how idiotic it is to think that they are steps ahead of the most calculating,
scheming and powerful institutions that exist in the world? The betrayal of the main philosophy
in favor of the material gain, should be enough proof that they are not being so successful as it
seems. If anything, the crescent influx of crypto users are responsibility of the super structure of
banks, corporations, governments and the founders of the &amp;ldquo;decentralized&amp;rdquo; blockchains.
Vitálik Buterin has been frequently govt-hopping, the banks are including crypto in credit and debit
cards and some governments are advancing the public into educational blockchain plans. To think that the
inclusion of cryptocurrency in the mass&amp;rsquo; ordinary lives is of organic development is just laughable.&lt;/p&gt;
&lt;h2 id=&#34;grim-future&#34;&gt;Grim future&lt;/h2&gt;
&lt;p&gt;The years around 2010 showed off lack of interest and trust from what today is -probably-
a cryptoholder, and surely, uncertainty from the aforementioned organisms, in which they discredited Bitcoin using
the means of communications, and prepared themselves by negotiating with the blockchain founders. Those that gave you pale looks when talking about such strange things, are now the most enthusiastic and talkative.
Not so long ago, something similar happened with Facebook, where everyone blindly joined the platform. Approximately 10 years had to pass
just for people to start realizing the evilness of the social media apparatus, and sadly, the same thing is going to happen with cryptocurrency: but this time leading us to permanent financial slavery. As corporations, governments and banks are
in conjunction co-opting the technology and herding the cattle into the digitized financial space, those observing are going to start noticing
some patterns which will confirm this grim prediction. In the long term, those which bought into the illusion, will also notice how pernicious it is: but
not so after they get passively taxed through the NWO&amp;rsquo;s blockchain-based funds app (which will of course be developed by a submissive and robot-like ethnicity,
probably indians or the chinese), until the changes get to an irreversible point.&lt;/p&gt;
&lt;p&gt;Some years ago, NFT games were popular enough that even women became interested in them. Of course, this wasn&amp;rsquo;t because of the quality of the game but because
of material pretensions. Everyone was making money which was worth another salary (at least in my country). In my opinion, this was one of the biggest causes most
people are nowadays interested in crypto. Most relatives thought they were going to hit it big this time, because this was the best thing ever in the entire history
of humanity and honestly some of them believed it was the new Bitcoin phenomena. Obviously, nobody learned anything about cryptocurrencies, blockchain or read any whitepaper,
they instead learned how to register accounts in shady sites and how to handle cringy wallet browser extensions, and just in a few months after spending some hundreds of dollars
in pixels, they ended up with a pixel priced in pennies. The money was gone, but the wronged idea of what cryptocurrency was supposed to be still persists, being that a way in which you
can potentially create money out of money. In a way, it resembles gambling, though you might as well call it as such.&lt;/p&gt;
&lt;p&gt;You might consider NFT games not a big deal, but in my case I took it as reference to confirm what I supposed: nobody cares. More so observing that close ones migrated to trading and
some of them are now avid promoters of crypto, where some have taken jobs in the government. In countries where the economic context is relatively disastrous, the advocacy of
cryptoslop is more effective than anywhere else, and that is one of the reasons why I presume everyone was so enthusiastic. As history shows, the 3rd world has always being the first
playground of greater powers, which is natural, and the introduction of crypto is no exception, as observed in the case of El Salvador.&lt;/p&gt;
&lt;p&gt;Gradually, we are going to start seeing more accentuated experiments. The obtuse communicators and unconscious shills which rows are constituted by mostly Libertarians and Anarcho-Cringism fellas, promoting the euphemism of &amp;ldquo;financial freedom&amp;rdquo;, will soon doom us to perdition if we don&amp;rsquo;t proactively do something.
Thinking they are fighting the state, they will remove us from what is left of ACTUAL national economical sovereignty, only to create a vacuum of power that will naturally be occupied by another form of government, this time being
more oppressive and severe.&lt;/p&gt;
&lt;h2 id=&#34;monero-case&#34;&gt;Monero case&lt;/h2&gt;
&lt;p&gt;Few people give importance to these aspects and flaws, and those end up adopting the most philosophically adequate coin which is XMR, of which they in concordancy define as what BTC should be. And it is true, more so because the same discredit that Bitcoin
suffered in the past is being now pointed at Monero: you will encounter many articles talking about how Bitcoin was the currency of criminals in the past,
and how is Monero the currency of the criminals and hackers of the present. Sadly, if the awareness in these matters continues as it is, adopting Monero will not save us
from the aforesaid slavery. If every provider, distributor, worker and service adopts the impositions of the NWO, are you going to be able to survive in a digitized financial world?
You can always seclude yourself to a small community (which I wouldn&amp;rsquo;t mind) and use an isolated currency, but in no world you will be able to transact with the rest of your country or access its services
if 99% of the citizens don&amp;rsquo;t value it. More so, if the government decides its illegal. The nearest case we have is the Vax ID, and it wouldn&amp;rsquo;t surprise me if our overlords run
another psyop in the next years.&lt;/p&gt;
&lt;p&gt;Whereas we can still use cash for transactions, like going to the butcher and getting some pounds of meat without compromising personal information, the world is
being methodically prepared to interact within itself through a network of centralized applications, in which not only there will be a record of the transaction, but
also of the buyer and seller&amp;rsquo;s name and surname, IP address, physical address, funds in account, and basically, every piece of personal information someone could name.
What else could be more desirable for someone that wants to rule over you to have in his disposal something that is so easily and effortlessly manipulable?
We can see the first experiments in China, that country that has mass surveillance and cameras with facial recognition in every corner. Oh yeah, but surely our western
leaders are not taking note of how the Chinese are policing their country, since they hate each other so much.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Links</title>
      <link>https://drainerdomain.xyz/links/</link>
      <pubDate>Mon, 19 Sep 2022 10:04:41 -0300</pubDate>
      
      <guid>https://drainerdomain.xyz/links/</guid>
      <description>&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Site&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://landchad.net&#34;&gt;LandChad&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;A website with information so you can host your own services&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://wiki.chadnet.org&#34;&gt;Chadnet&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;A compendium of knowledge about various topics&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://tomfasano.net&#34;&gt;Tom Fasano&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Cool guy that &lt;del&gt;writes&lt;/del&gt; types interesting philosophical articles&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://github.com/Developer-Y/cs-video-courses&#34;&gt;CS courses&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Github repository that contains a vast number of CS courses&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://github.com/sw-yx/spark-joy&#34;&gt;SparkJoy&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Github repository for webdevs in a hurry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://github.com/awesome-selfhosted/awesome-selfhosted&#34;&gt;Awesome Selfhosted&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Github repository with a list of services that you can host&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://jmp.chat&#34;&gt;JMP Chat&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Get a phone number connected to the jabber network&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://fit.cooking&#34;&gt;/fit/ cooking&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;A compilation of healthy food for gymcels&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://sadgrl.online/webmastery/downloads/tiledbgs.html&#34;&gt;Tiled Backgrounds&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Categorized tiled backgrounds&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://digdeeper.neocities.org&#34;&gt;Digdeeper&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Useful site for acquiring a decent amount of online privacy&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://spyware.neocities.org&#34;&gt;Spyware Watchdog&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Curated list of software in regards of privacy&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://pattern.monster&#34;&gt;Pattern Monster&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Free to use SVG backgrounds&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://catbox.moe&#34;&gt;CatboxMoe&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;200MB File sharing service&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://simplytranslate.org&#34;&gt;Simply Translate&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Alternative for translating text&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://vim.reversed.top&#34;&gt;Vim-like progs&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;A good amount of software for vimtards&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://www.castlevaniacrypt.com/&#34;&gt;CastlevaniaCrypt&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;A shrine to all the Castlevania games&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://dezgo.com/&#34;&gt;Dezgo&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Stable-diffusion generated art in the browser&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://sheriffmediocre.xyz/&#34;&gt;Sheriff Mediocre&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;A simple and good looking site&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://www.deviceinfo.me/&#34;&gt;Device Info&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Security and online privacy testing tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;https://musicbrainz.org&#34;&gt;MusicBrainz&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Open music encyclopedia&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
</description>
    </item>
    
    <item>
      <title>Stuff</title>
      <link>https://drainerdomain.xyz/stuff/</link>
      <pubDate>Fri, 16 Sep 2022 06:57:38 -0300</pubDate>
      
      <guid>https://drainerdomain.xyz/stuff/</guid>
      <description></description>
    </item>
    
    <item>
      <title>You are not \$newly_dropped_mental_disorder!</title>
      <link>https://drainerdomain.xyz/posts/you-are-not-newly-drop-mental-illness/</link>
      <pubDate>Thu, 08 Sep 2022 01:06:36 -0300</pubDate>
      
      <guid>https://drainerdomain.xyz/posts/you-are-not-newly-drop-mental-illness/</guid>
      <description>&lt;img src=&#34;https://drainerdomain.xyz/images/Pepe_Laptop.webp&#34; align=&#34;right&#34; height=&#34;auto&#34; width=&#34;50%&#34; alt=&#34;Pepe at the computer&#34;&gt;
&lt;p style=&#34;text-align:left&#34;&gt;The internet people will often say that they are autistic or &#34;nEuRoDiVerGenT&#34;, the later becoming a more
common term as time passes by. Even sometimes, internet people will diagnose themselves with &#34;social anxiety&#34;, &#34;depression&#34; or with another
set of mental issues that I do not know nor care about. In reality, the majority of people DO NOT suffer from any of these problems as if those were genetically encoded
into themselves. The truth has nothing to do with how individuals are, but with how society has developed into a soulless machine, where
people can talk without really talking, and see without really seeing. And I mean this because people think that they are socializing
when voice chatting with internet &#34;friends&#34;. You are not talking. You are not seeing. All that is happening is you looking at the illusion
of a computer screen.&lt;/p&gt;
&lt;p&gt;This conglomerate of fakely self-diagnosed people, will never realize that in fact, those mental issues are just sprouts of an utterly rotten tree, which is modern society.
Men are animals believing they are Men, and animals are not supposed to stare at a monitor screen 12 hours a day inside a blacked out room eating ultra processed food
and drinking fluoride concoctions, and without any real human interaction. It is pure artificial madness, and in effect, it would be wise to say that those so called &amp;ldquo;mental disorders&amp;rdquo;
are just unnatural anomalies in a postiche world. For an analogy, think about killer whales: it is extremely rare for these animals to intentionally kill
a human being in a natural enviroment. On the contrary, they do kill human beings frequently when they are in captivity (aka being tortured). The artificial conditions of the
enviroment twist the natural behavior of the animal. See the similarity with human beings?&lt;/p&gt;
&lt;h2 id=&#34;common-behavior&#34;&gt;Common behavior&lt;/h2&gt;
&lt;p&gt;Some usual behavior amongst these kind of people is also the craving for attention, which is a very feminine trait and which mostly derives from the lack of a paternal figure.
They will constantly tell others about how sad, depressed or anxious (sometimes escalating to &amp;ldquo;wanting&amp;rdquo; to kill themselves) they are for which in reality are very mundane, stupid
and easy to solve problems. Sometimes they even encourage others to feel the same way, kind of when a falling person tries to grab something to impede the fall, except that in this case
this person intentionally jumps and pulls the object to an abyss. The modern man has a very thin layer of skin and will get very sensible if you ask him about what he thinks the origin of his problems might be and also
point at the real cause of them, so be careful on the approach.&lt;/p&gt;
&lt;p&gt;More so, these subjects have the tendency to masochistically degrade their minds even more by listening to pathetic, sad and overly melancholic music. Its as if their brains were already raped so many times
that they gradually started to enjoy it. These &amp;ldquo;artists&amp;rdquo; are usually Billie Ellish, Lil Peep, or other ultra generic pseudo-edgy experiments that maliciously submerge their pressumably young audiences
into fake induced sadness. Music is a form of propaganda and depending on the genre and the message it impacts positively or not unto the audience. Maybe this is obvious (and it should) to you but tell
that to women shaking their asses while devolving into absolute baboons when empowered free woman signer tells them too. If song says you should be sad, you probably will.&lt;/p&gt;
&lt;p&gt;When the time of solving the previously named problems comes, this group resorts to yet another package of artificial products of the same corrupt system. These products are the psychologists and the psychiatrists, each of them containing its respective badge of evilness.
Most of the times, this symbiotic relationship operates in a pernicious manner, where the psychologist erroneously diagnoses an inexistent illness, he then derives the unlucky patient to the executioner: the psychiatrist, whom
for a profit will commend the Pill™, pleasing his pharmaceutical masters as the good boy he is. Unfortunately, the chances of convincing a normie that the advice and intentions of people that have an academic degree are not always correct are very
low, as everyone is so gullible and believe in anything except on what they are told not to believe in, which is absurdly ironic if you think about it. Added to that, that the majority of people believe that degree equals intelligence, when in reality the average IQ is of a decreasing 100 points and in most
careers you only need persistence.&lt;/p&gt;
&lt;p style=&#34;text-align: center&#34;&gt;
&lt;img src=&#34;https://drainerdomain.xyz/images/pharmahoney.webp&#34; style=&#34;border:3px dotted white&#34; height=&#34;auto&#34; width=&#34;65%&#34; align=&#34;center&#34; alt=&#34;Pharma Honey&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;the-pornographic-factor&#34;&gt;The pornographic factor&lt;/h2&gt;
&lt;p&gt;Internet people and offliners have internalized watching porn as if it was a totally normal thing. Whether we are talking of the first or the later,
none of these people realize how humilliating it is to enclose yourself in a dark room just to coom to another man ramming down a woman. By definition, doing this makes you a cuck.
One may ask, &amp;ldquo;but what if I coom to only naked women?&amp;rdquo;, and the answer is that it is still wrong. Only very disturbed degenerates find masturbation as something to be proud of, to advertise about and as something
that needs justification. The deniers will go in a chain of mental gymnastics to justify that they want to masturbate to degenerate pixels. Simply, it doesn&amp;rsquo;t matter if you do it while watching hardcore porn or not, it is still fake, it reflects
one&amp;rsquo;s lack of discipline and pushes you towards your animalistic instict. You can&amp;rsquo;t control it, it controls you because you are weak.&lt;/p&gt;
&lt;p&gt;Going further, I&amp;rsquo;d risk to say that most people masturbarting to porn do it on a daily basis. Over the time, this becomes an addiction where the hyper stimulated brain craves for more stimulus
while destroying its dopamine receptors. In consequence of the degradation, the coomer, while being unnable to saciate its fucked up brain&amp;rsquo;s apetite, begins to show
symptoms of its degeneracy. While in some cases a number of them become only more vulgar in character (for example by making jokes that &lt;strong&gt;always&lt;/strong&gt; involve sex), others manifest these so called &amp;ldquo;mental disorders&amp;rdquo;, which of course
are states of mind precipitated by porn.&lt;/p&gt;
&lt;p&gt;We could define porn as a scam where the coomer pays with energy and in exchange receives mental retardation. In such process, the computer makes the brain believe that he has found a sexual partner, showing the lonely man a catalog of
pixelated whores that he can access to with a simple click. Finding a sexual partner is a natural imperative of a man as the animal he is: to procreate and extend its genetic material is one of the things that keep this biological and almatic
machine moving forward. But having granted access to so many options with such little effort could only impact negatively unto this animal&amp;rsquo;s behavior. Eventually, the loner loses interest in having real interactions and succumbs to the illusion of the machine,
sooner or later realizing that he has wasted his seed and has rampaged his brain to ashes till the point of no return.&lt;/p&gt;
&lt;p&gt;Let it be clear that the argument is not that porn is the main cause of this problematic, but it is undoubtely a big catalyst. Despite this section being superficial (I plan on writing a more detailed article, in my limits of course), I think it is enough for someone to grasp or at least to begin to understand
the big picture. More incisive questions on the matter, to go &lt;em&gt;&lt;strong&gt;down the rabbit hole&lt;/strong&gt;&lt;/em&gt; as it is commonly said in some circles, should include the people benefiting from it and those who own the industry (MindGeek). Remember that porn wasn&amp;rsquo;t a thing for thousand of years,
just for some decades it has gradually become free, accepted, and very easy to access because of modern technology, where free is just an euphemism meaning you are the product.&lt;/p&gt;
&lt;h2 id=&#34;final-note&#34;&gt;Final note&lt;/h2&gt;
&lt;p&gt;To clarify and repeating, I am referring to a specific crescent demographic. I&amp;rsquo;ve seen depression in its real state from a very close perspective and I do believe that some people suffer from real mental issues,
but I will always argue and mantain that this is just a minority which is also and undoubtely the consequence of a synthetic society. The main characteristic of this ill world is the augmenting denial of the metaphysical which
leaves an existential void that people will hopelessly intend to fill with material things. From here, the character of humans furcates into various forms, be it a happy and hedonistic consumer or simply a sad nihilist, ultimately conforming
a part of the same confused mass.&lt;/p&gt;
&lt;p&gt;If you feel this text is directed to you and you disagree it is fine. But let me tell you something, you can&amp;rsquo;t find happiness in the place that you&amp;rsquo;ve losted it.
Or rephrased, happiness is the only thing that can&amp;rsquo;t be found in the same place it has been lost. Also, find God, go outside, start lifting and stop wasting money and time on redundant solutions
that will never really fix you. Its either that or keep coping.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>RSS Links</title>
      <link>https://drainerdomain.xyz/rss/</link>
      <pubDate>Wed, 07 Sep 2022 12:39:08 -0300</pubDate>
      
      <guid>https://drainerdomain.xyz/rss/</guid>
      <description>&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;GUIDES&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://drainerdomain.xyz/guides/index.xml&#34;&gt;https://drainerdomain.xyz/guides/index.xml&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;POSTS&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://drainerdomain.xyz/posts/index.xml&#34;&gt;https://drainerdomain.xyz/posts/index.xml&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
</description>
    </item>
    
    <item>
      <title>Newsboat</title>
      <link>https://drainerdomain.xyz/guides/consume-media-the-right-way-newsboat/</link>
      <pubDate>Fri, 19 Aug 2022 14:31:59 -0300</pubDate>
      
      <guid>https://drainerdomain.xyz/guides/consume-media-the-right-way-newsboat/</guid>
      <description>&lt;p&gt;Allthough I&amp;rsquo;ve riced &lt;a href=&#34;https://github.com/newsboat/newsboat&#34;&gt;newsboat&lt;/a&gt;, this will be a guide focusing on the important aspect of the program. Newsboat allows the user
to read RSS/Atom feeds, which are usually generated by the website itself or sometimes by a frontend or third party app. The main
reason to use this program is the fact that you won&amp;rsquo;t need an account in sites such as Youtube, Reddit, or Twitter anymore. Also, that you&amp;rsquo;ll
have sort of a centralized way to consume (which includes reading text, listening to podcasts or watching videos) pretty much any site on the
internet by using only a terminal program, which is by far faster and more desirable. This guide includes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Brief explanation on how it works (program is very intuitive to use)&lt;/li&gt;
&lt;li&gt;Setup of other programs&lt;/li&gt;
&lt;li&gt;Running newsboat in the background so it notifies the user when new article appears (optional)&lt;/li&gt;
&lt;li&gt;Multiple macro configurations that you might find very useful (optional but HIGHLY recommended)&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&#34;installation&#34;&gt;Installation&lt;/h1&gt;
&lt;p&gt;The software is at almost any repository. In case it is not on your distro, you can always build it from source.&lt;/p&gt;
&lt;p&gt;For Arch-based systems:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;pacman -S newsboat mpv
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;I use &lt;code&gt;firefox&lt;/code&gt; for opening up links (unless is the article has only text)  and &lt;code&gt;mpv&lt;/code&gt; to reproduce videos and audios.
You can use any other browser and media player obviously. Or, you can use something like &lt;code&gt;w3m&lt;/code&gt; to read text, but remember to change
it as the browser when setting up the program.&lt;/p&gt;
&lt;p&gt;Also, if you want to download videos/audios I recommend installing &lt;a href=&#34;https://github.com/yt-dlp/yt-dlp&#34;&gt;yt-dlp&lt;/a&gt; from its github&amp;rsquo;s repository.
The installation is straightforward and the software is easier to update by using &lt;code&gt;yt-dlp -U&lt;/code&gt; once needed. This program is a fork of the discontinued
&lt;code&gt;youtube-dl&lt;/code&gt; which may still appear in some distro&amp;rsquo;s repositories.&lt;/p&gt;
&lt;h1 id=&#34;configuration&#34;&gt;Configuration&lt;/h1&gt;
&lt;h2 id=&#34;newsboat&#34;&gt;Newsboat&lt;/h2&gt;
&lt;p&gt;Newsboat won&amp;rsquo;t run unless the file &lt;code&gt;urls&lt;/code&gt; has something inside. Both &lt;code&gt;config&lt;/code&gt; and &lt;code&gt;urls&lt;/code&gt; files are at either &lt;code&gt;$HOME/.newsboat&lt;/code&gt; or &lt;code&gt;$XDG_CONFIG_HOME/newsboat&lt;/code&gt;.
Put something inside the &lt;code&gt;urls&lt;/code&gt; file. I recommend using the following frontends for getting the feeds:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Twitter -&amp;gt; nitter&lt;/li&gt;
&lt;li&gt;Youtube -&amp;gt; Invidious&lt;/li&gt;
&lt;li&gt;Reddit -&amp;gt; teddit&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Say you want to add the youtube channel &lt;code&gt;HydeWars&lt;/code&gt; to your feed. It will look like this:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;https://vid.puffyan.us/feed/channel/UCfUaZ8Ra7m7BqUEACv2jySw
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;So basically, you need to get the channel&amp;rsquo;s ID which is &lt;code&gt;UCfUaZ8Ra7m7BqUEACv2jySw&lt;/code&gt; and add it at the end of the url, where
&lt;code&gt;vid.puffyan.us&lt;/code&gt; is an instance of Invidious. How you find the ID of a YT channel is a matter of having at least a 2 digits IQ.
If you don&amp;rsquo;t want to use an Invidious instance, you can go to any Youtube channel and view the souce code, filter keyword &lt;code&gt;rss&lt;/code&gt; and
see how the URL looks.&lt;/p&gt;
&lt;p&gt;You can also tag URLs and then press &lt;code&gt;t&lt;/code&gt; by adding the tag at the end of the string after a blank space:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;https://vid.puffyan.us/feed/channel/UCfUaZ8Ra7m7BqUEACv2jySw MDE
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Now open &lt;code&gt;config&lt;/code&gt; file and add:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# GENERAL #
reload-time 30 
auto-reload yes
browser &amp;#34;setsid -f $BROWSER --new-tab %u &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&amp;#34;
cleanup-on-quit yes
history-limit 2000
show-keymap-hint no
goto-next-feed no
error-log &amp;#34;.config/newsboat/error.log&amp;#34;
prepopulate-query-feeds yes
suppress-first-reload yes

# NOTIFICATIONS #
notify-always no 
notify-program &amp;#34;/usr/bin/dunstify&amp;#34;
notify-format &amp;#34;Newsboat: %d new articles&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Line 4 sets up the browser and forks it, while opening the url in a new tab. In my case, I have an env var set to &lt;code&gt;firefox&lt;/code&gt;. Change &lt;code&gt;$BROWSER&lt;/code&gt; to your browser&amp;rsquo;s name or software for reading text, if you need to.
Then, for notifications I use dunstify but you can use whatever you like. Rest is self explanatory, but keep in mind that if you are going to setup notifications you should
keep &lt;code&gt;reload-time&lt;/code&gt; and &lt;code&gt;auto-reload&lt;/code&gt; as they are.&lt;/p&gt;
&lt;p&gt;Optionally, you can set up vim-like bindings:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# Vim keybindings
unbind-key j
unbind-key k
unbind-key ENTER
unbind-key o 

bind-key o open 
bind-key k up
bind-key j down
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;mpv&#34;&gt;Mpv&lt;/h2&gt;
&lt;p&gt;Open &lt;code&gt;$XDG_CONFIG_HOME/mpv/mpv.conf&lt;/code&gt; and add:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# Cache
cache=yes
--stream-buffer-size=8MiB

# Quality stream
ytdl-format=bestvideo[height&amp;lt;=?720]+bestaudio/best

# Yt-dlp hook
script-opts-append=ytdl_hook-ytdl_path=yt-dlp
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;This sets up a &lt;code&gt;yt-dlp&lt;/code&gt; hook that will make the streaming faster. Also, if you want higher/lesser quality, change the height value.&lt;/p&gt;
&lt;h2 id=&#34;yt-dlp&#34;&gt;Yt-dlp&lt;/h2&gt;
&lt;p&gt;I recommend you to set up a download folder. Open up &lt;code&gt;$XDG_CONFIG_HOME/yt-dlp/config&lt;/code&gt; and add:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;-o &amp;#39;/path/to/folder/%(title)s.%(ext)s&amp;#39;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;This will save the video/audio to a folder using metadata.&lt;/p&gt;
&lt;h1 id=&#34;running-newsboat-through-a-script-for-notifications&#34;&gt;Running newsboat through a script for notifications&lt;/h1&gt;
&lt;p&gt;Instead of running newsboat directly, I use a simple script so it is always on the background. You can also achieve this with cronjobs.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;#!/bin/sh

while true; do
    kill $(pidof newsboat)
    rm $XDG_CONFIG_HOME/newsboat/queue
    $TERMINAL -e newsboat
    if [[ $? == 0 ]] ; then
        exec newsboat &amp;amp;&amp;amp; break
    else
        break
    fi
done
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;code&gt;chmod +x&lt;/code&gt; the script and remember to use it instead of directly executing newsboat. In my case, I use an i3&amp;rsquo;s keybinding for quick access, and also
for executing the script only one time as soon as the window manager initializes.&lt;/p&gt;
&lt;h1 id=&#34;macros&#34;&gt;Macros&lt;/h1&gt;
&lt;p&gt;A macro is used for executing a sequence of commands by pressing a key or a combination of keys. In our case, for using the browser setting as not really a browser, but anything we like. For example, as a media player
to reproduce a YT video. To execute a macro press &lt;code&gt;,&lt;/code&gt; + &lt;code&gt;key&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Here is a list of some macros I&amp;rsquo;ve came up with that are very useful (add them to newsboat&amp;rsquo;s config file):&lt;/p&gt;
&lt;h2 id=&#34;queue-videos-clear-playlist-and-reproduce-playlist&#34;&gt;Queue videos, clear playlist and reproduce playlist&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;macro a set browser &amp;#34;echo %u &amp;gt;&amp;gt; ~/.config/newsboat/queue&amp;#34; ; open-in-browser ; set browser &amp;#34;$BROWSER %u&amp;#34;
macro c set browser &amp;#34;rm $HOME/.config/newsboat/queue &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&amp;#34; ; open-in-browser ; set browser &amp;#34;$BROWSER %u&amp;#34;
macro p set browser &amp;#34;kill $(pidof mpv) ; setsid -f mpv --playlist=$HOME/.config/newsboat/queue &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&amp;#34; ; open-in-browser ; set browser &amp;#34;$BROWSER %u&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The idea of these 3 macros is creating, playing or deleting a playlist. If you take a look at the script in the previous section, this file named &lt;code&gt;queue&lt;/code&gt; gets deleted when the script executes.
For adding videos or even audios to said file you need to focus the article on a feed.&lt;/p&gt;
&lt;h2 id=&#34;play-queued-videos-fullscreen-second-monitor&#34;&gt;Play queued videos fullscreen second monitor&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;macro P set browser &amp;#34;kill $(pidof mpv) ; setsid -f mpv --x11-name=newsboatfs --fullscreen=yes --playlist=$HOME/.config/newsboat/queue &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&amp;#34; ; open-in-browser ; set browser &amp;#34;$BROWSER %u&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;play-video&#34;&gt;Play video&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;macro v set browser &amp;#34;kill $(pidof mpv) ; setsid -f mpv %u &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&amp;#34; ; open-in-browser-and-mark-read ; set browser &amp;#34;$BROWSER %u&amp;#34; 
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;play-video-floating-mode&#34;&gt;Play video floating mode&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;macro i set browser &amp;#34;kill $(pidof mpv) ; setsid -f mpv --x11-name=mpvfloat %u &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&amp;#34; ; open-in-browser-and-mark-read ; set browser &amp;#34;$BROWSER %u&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;play-audio-only&#34;&gt;Play audio only&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;macro A set browser &amp;#34;kill $(pidof mpv) ; setsid -f mpv %u --no-video &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&amp;#34; ; open-in-browser-and-mark-read ; set browser &amp;#34;$BROWSER %u&amp;#34; 
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;play-fullscreen-i3-sends-it-to-second-monitor-useful-for-playing-all-the-videos-from-a-channel&#34;&gt;Play fullscreen, i3 sends it to second monitor (useful for playing all the videos from a channel)&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;macro f set browser &amp;#34;kill $(pidof mpv) ; setsid -f mpv --x11-name=newsboatfs --fullscreen=yes %u &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&amp;#34; ; open-in-browser ; set browser &amp;#34;$BROWSER %u&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;download-video&#34;&gt;Download video&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;macro y set browser &amp;#34;yt-dlp %u&amp;#34; ; open-in-browser ; set browser &amp;#34;$BROWSER %u&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;open-in-default-browser&#34;&gt;Open in default browser&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;macro o open-in-browser
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;NOTE: Keep in mind that for sending the videos/articles to another monitor you need to rename the X instance to whatever you like so you can then manipulate it with your window manager.
Using i3 would look like this:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;for_window [instance=&amp;#34;newsboatfs&amp;#34;] move container to workspace $ws10
for_window [instance=&amp;#34;mpvfloat&amp;#34;] floating enable, resize set 960 540, move container position center 
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Where &lt;code&gt;$ws10&lt;/code&gt; outputs to &lt;code&gt;HDMI-1&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;workspace &amp;#34;10&amp;#34; output HDMI-1
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Use &lt;code&gt;xrandr&lt;/code&gt; to know display names.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Firefox</title>
      <link>https://drainerdomain.xyz/guides/harden-firefox/</link>
      <pubDate>Mon, 16 May 2022 22:05:11 -0300</pubDate>
      
      <guid>https://drainerdomain.xyz/guides/harden-firefox/</guid>
      <description>&lt;p&gt;A guide and explanation for making Firefox more secure/private using &lt;code&gt;arkenfox user.js&lt;/code&gt; and some essential addons. This is a compilation from
various sources that are linked at the bottom of this article, and from my useless and extensive attempt for having a useful yet &amp;lsquo;privacy-oriented&amp;rsquo;
and &amp;lsquo;secure browser&amp;rsquo;, things that are mutually exclusive. Still, this guide will leave the user with a better than nothing tool to navigate the net.&lt;/p&gt;
&lt;h2 id=&#34;a-little-test-before&#34;&gt;A little test before&lt;/h2&gt;
&lt;p&gt;You should check your browser against fingerprinting just so you can compare after. For that use this website: &lt;a href=&#34;https://deviceinfo.me&#34;&gt;deviceinfo.me&lt;/a&gt;.
This is all the data that first-party and third-party sites get from you, but we will minimize it. Keep in mind that some information won&amp;rsquo;t be concealed,
such as your IP or location. Please do the test again after you finish.&lt;/p&gt;
&lt;h2 id=&#34;arkenfox-userjs&#34;&gt;arkenfox user.js&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/arkenfox/user.js/&#34;&gt;LINK&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This tool is just a user config template that interacts with the inner functions of Firefox. It is highly recommended that you read the &lt;a href=&#34;https://github.com/arkenfox/user.js/wiki&#34;&gt;wiki&lt;/a&gt;
so you can customize it. Otherwise, with just downloading the file and making the browser use it would be more than enough in most cases. So for that:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;firefox -no-remote -CreateProfile &amp;lt;userprofile&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;That will create a user directory under &lt;code&gt;$HOME/.mozilla/firefox/&lt;/code&gt; that contains the string &lt;code&gt;&amp;lt;userprofile&amp;gt;&lt;/code&gt; at the end of it.
Now delete its content, download &lt;code&gt;arkenfox user.js&lt;/code&gt; and activate the profile:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;cd $HOME/.mozilla/firefox/&amp;lt;userprofile&amp;gt;/ &amp;amp;&amp;amp; rm times.json
wget https://raw.githubusercontent.com/arkenfox/user.js/master/user.js
firefox -P &amp;lt;userprofile&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Note: &lt;code&gt;firefox -P &amp;lt;userprofile&amp;gt;&lt;/code&gt; where &lt;code&gt;&amp;lt;userprofile&amp;gt;&lt;/code&gt; is just the string you used to create the profile (not the random numbers from the directory)&lt;/p&gt;
&lt;p&gt;Check &lt;code&gt;/usr/lib/firefox/&lt;/code&gt; for these plugins (some may not be included) and delete them:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;firefox@getpocket.com.xpi&lt;/li&gt;
&lt;li&gt;followonsearch@mozilla.com.xpi&lt;/li&gt;
&lt;li&gt;activity-stream@mozilla.org.xpi&lt;/li&gt;
&lt;li&gt;screenshots@mozilla.org.xpi&lt;/li&gt;
&lt;li&gt;onboarding@mozilla.org.xpi&lt;/li&gt;
&lt;li&gt;formautofill@mozilla.org.xpi&lt;/li&gt;
&lt;li&gt;webcompat@mozilla.org.xpi&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Those are the basics, as I said read the extense wiki for customizing the template.&lt;/p&gt;
&lt;p&gt;Note: notice that the content of the explorer have borders. That is a letterboxing option that strengthens against fingerprinting.
If it bothers you, edit your &lt;code&gt;user.js&lt;/code&gt; and search for &lt;code&gt;user_pref(&amp;quot;privacy.resistFingerprinting.letterboxing&amp;quot;, true);&lt;/code&gt;. Then replace
&lt;code&gt;true&lt;/code&gt; with &lt;code&gt;false&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Now start firefox we are going to install some addons.&lt;/p&gt;
&lt;h2 id=&#34;umatrix&#34;&gt;uMatrix&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://addons.mozilla.org/en-US/firefox/addon/umatrix/&#34;&gt;LINK&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The superior blocker. If configured properly, it will restrict any malicious site you may misstakenly enter to and block any pop up window or annoying ad, guaranteed.
Other extensions or even the built-in anti ad options of for example, Brave Browser, are useless and do not work properly.&lt;/p&gt;
&lt;p&gt;This extension gives you a per site list that shows first and third party domains that you are establishing a connection to. If you click on the extension icon and look at the grid,
you will notice 8 elements. These are simply the reason why this addon is superior to others. It will block ANYTHING because it doesn&amp;rsquo;t block per domain. In other words and as an example,
if you deny &lt;code&gt;script&lt;/code&gt;, it will block JavaScript in every site you visit. Inferior extensions have a gigantic database of domains to work with, so if a domain is missing it is impossible for
it to block its elements.&lt;/p&gt;
&lt;p&gt;First, go to uMatrix&amp;rsquo;s configuration panel and open the &lt;code&gt;Settings&lt;/code&gt; tab. Copy this:&lt;/p&gt;
&lt;img src=&#34;https://drainerdomain.xyz/images/umatrix-01.webp&#34; width=&#34;100%&#34; height=&#34;auto&#34; alt=&#34;settings&#34;&gt;
&lt;p&gt;I recommend you use &lt;code&gt;Domain&lt;/code&gt; as an option to &lt;code&gt;Default scope level&lt;/code&gt; so you can create more flexible rules such as the one from the example that comes later in the guide.
Cookies are trapped locally by uMatrix. This allows you to inspect the contents of it and blocks the sender from getting it back. Turn on the option and set
a timer for deleting non-blocked cookies if you want.&lt;/p&gt;
&lt;p&gt;Moving on, lets generate some rules. Go to uMatrix&amp;rsquo;s panel and then to &lt;code&gt;My Rules&lt;/code&gt;. Observing, you can see two sections: left is for permanent rules and right is for temporary rules. For editing a rule in,
type in the right section, then save it and click commit. Rules consist of 4 parts (&lt;code&gt;*&lt;/code&gt; is a wildcard, which means any):&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;* * * allow/deny
| | |
| | |______ Element
| |________ Domain
|__________ Scope
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;So for a start, consider adding these strong rules:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;* * * block
* * css allow
* * image allow
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The first line blocks ANYTHING on any scope and domain. Then the second and third overrides first and allows css and image on ANY scope and domain. Pretty easy.
This is a good start for then tweaking and adding more rules.&lt;/p&gt;
&lt;p&gt;Say you want to log in to a site you frequent. This site will need cookies allowed, and maybe needs a script to run a captcha from a third-party domain like google.
Such rule would look like this:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;* ineedcookies.com cookie allow 
ineedcookies.com googlecaptcha.com script allow
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;This will allow the google&amp;rsquo;s domain only in the site requesting for a login, which is desirable. This is pretty much it, if you are not looking for a strong blocking ruleset, you can
use uBlock Origin which is from the same creator, or search the &lt;a href=&#34;https://github.com/gorhill/uMatrix/wiki&#34;&gt;wiki&lt;/a&gt; for a more suitable example.&lt;/p&gt;
&lt;h2 id=&#34;decentraleyes&#34;&gt;Decentraleyes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/&#34;&gt;LINK&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This one is a content blocker that will deny, in the majority of cases, third party domains from trying to deliver something you don&amp;rsquo;t need. You could say, &amp;lsquo;but isn&amp;rsquo;t that already done by
uMatrix?&amp;rsquo;, and you are honestly right. The thing is that uMatrix breaks everything it touches. While adding Decentraleyes on top of it, you could still mantain some aspects of the sites you are visiting.
Decentraleyes stores content locally so you can still make use of it without the sender getting a response. On the other hand, uMatrix will prevent Decentraleyes from doing so if it is hardblocking content.
To avoid that from happening, you need to create some extra rules in uMatrix that allow traffic to some convenient domains.&lt;/p&gt;
&lt;p&gt;These are the rules:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;* ajax.aspnetcdn.com * allow
* ajax.googleapis.com * allow
* ajax.microsoft.com * allow
* cdn.jsdelivr.net * allow
* cdnjs.cloudflare.com * allow
* code.jquery.com * allow
* lib.sinaapp.com * allow
* libs.baidu.com * allow
* upcdn.b0.upaiyun * allow
* yandex.st * allow
* yastatic.net * allow
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;More rules could and should be added as long as you keep using the extensions.&lt;/p&gt;
&lt;h2 id=&#34;privacy-redirect&#34;&gt;Privacy Redirect&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://addons.mozilla.org/en-US/firefox/addon/privacy-redirect/&#34;&gt;LINK&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This one is a redirector for the most famous and used sites such as Twitter, Reddit or Youtube. Simply click on the icon and turn on/off which service you want to redirect to its respective frontend.
Frontends are very useful at times when you can&amp;rsquo;t view content that is age restricted or simply because you are not logged in, not to mention that you also skip the annoying pop up windows
from shitsites like Twitter. This shouldn&amp;rsquo;t be a problem since you are running uMatrix now, but it is good to know. Also, using a frontend like Invidious for Youtube, allows for navigation
with no ads, no tracking (doesn&amp;rsquo;t log your IP) and without JS enabled.&lt;/p&gt;
&lt;p&gt;Here is a quote from Nitter&amp;rsquo;s about section (logic applies to the other frontends):&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;It&amp;rsquo;s impossible to use Twitter without JavaScript enabled. For privacy-minded folks, preventing JavaScript analytics and IP-based tracking is important, but apart from using a VPN and uBlock/uMatrix, it&amp;rsquo;s impossible. Despite being behind a VPN and using heavy-duty adblockers, you can get accurately tracked with your browser&amp;rsquo;s fingerprint, no JavaScript required. This all became particularly important after Twitter removed the ability for users to control whether their data gets sent to advertisers.
Using an instance of Nitter (hosted on a VPS for example), you can browse Twitter without JavaScript while retaining your privacy. In addition to respecting your privacy, Nitter is on average around 15 times lighter than Twitter, and in most cases serves pages faster (eg. timelines load 2-4x faster).
In the future a simple account system will be added that lets you follow Twitter users, allowing you to have a clean chronological timeline without needing a Twitter account.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This is the list of sites that the extension allows to redirect:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Twitter → Nitter&lt;/li&gt;
&lt;li&gt;Youtube → Invidious&lt;/li&gt;
&lt;li&gt;Instagram → Bibliogram&lt;/li&gt;
&lt;li&gt;Reddit → Libreddit or old version&lt;/li&gt;
&lt;li&gt;Google Translate → Simply Translate&lt;/li&gt;
&lt;li&gt;Wikipedia → Wikiless&lt;/li&gt;
&lt;li&gt;Google Maps → OpenStreetMaps&lt;/li&gt;
&lt;li&gt;Search Engine → custom&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I recommend you go to the general options, where you can set the instance of the frontend you want to use.&lt;/p&gt;
&lt;p&gt;We are done. Remember to run the test again and compare to see the results.&lt;/p&gt;
&lt;h3 id=&#34;not-privacysecurity-related-addons&#34;&gt;Not privacy/security related addons&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Stylus: custom/community generated css with one click&lt;/li&gt;
&lt;li&gt;ff2mpv: forward links to mpv (useful for when you break js/xhr/frame on sites that have videos)&lt;/li&gt;
&lt;li&gt;Vimium-FF: vimlike bindings&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;links&#34;&gt;Links&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://digdeeper.neocities.org/&#34;&gt;digdeeper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://spyware.neocities.org/&#34;&gt;spyware watchdog&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/arkenfox/user.js/wiki&#34;&gt;arkenfox user.js wiki&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;hhttps://github.com/gorhill/uMatrix/wiki&#34;&gt;uMatrix wiki&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Prosody</title>
      <link>https://drainerdomain.xyz/guides/prosody-servidor-xmpp/</link>
      <pubDate>Fri, 13 May 2022 18:23:51 -0300</pubDate>
      
      <guid>https://drainerdomain.xyz/guides/prosody-servidor-xmpp/</guid>
      <description>&lt;p&gt;This guide is for installing Prosody, an XMPP server that is decentralized, fast, simple and FOSS.
The version we will be using is &lt;code&gt;0.11.12&lt;/code&gt; and in the end the user will have a private and only c2s server.
These options are of course changeable after or during the installation.&lt;/p&gt;
&lt;h1 id=&#34;prerequisites&#34;&gt;Prerequisites&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;GNU/Linux system&lt;/li&gt;
&lt;li&gt;VPS (recommended) or a home server&lt;/li&gt;
&lt;li&gt;Domain name&lt;/li&gt;
&lt;li&gt;Basic terminal knowledge&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&#34;installation&#34;&gt;Installation&lt;/h1&gt;
&lt;p&gt;We install the main packages plus some extras for TLS encryption, A/V streaming, and file transfering. If you don&amp;rsquo;t care about these things
you can skip them.&lt;/p&gt;
&lt;p&gt;On Debian/Ubuntu:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;apt install prosody prosody-modules python3-certbot-nginx coturn mercurial
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;code&gt;prosody&lt;/code&gt; is the main package
&lt;br&gt;
&lt;code&gt;prosody-modules&lt;/code&gt; are some extra packages for functionability
&lt;br&gt;
&lt;code&gt;python3-certbot-nginx&lt;/code&gt; is for TLS encryption
&lt;br&gt;
&lt;code&gt;coturn&lt;/code&gt; a STUN/TURN server that allows A/V streaming for users behind NAT
&lt;br&gt;
&lt;code&gt;mercurial&lt;/code&gt; for installing community modules for the STUN/TURN server
&lt;br&gt;&lt;/p&gt;
&lt;h1 id=&#34;configuration&#34;&gt;Configuration&lt;/h1&gt;
&lt;p&gt;The server&amp;rsquo;s CFG file is at &lt;code&gt;/etc/prosody/prosody.cfg.lua&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&#34;admin-users-and-the-domain-name&#34;&gt;Admin, users and the domain name&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;...
admins = { &amp;#34;admin1@domain.org&amp;#34;, &amp;#34;admin2@domain.org&amp;#34; }
...
VirtualHost = &amp;#34;domain.org&amp;#34;
...
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Now from the terminal add some users:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;prosodyctl adduser user@domain.org
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The program will prompt for a password. To delete a user use the command &lt;code&gt;deluser&lt;/code&gt;, and for changing passwords use &lt;code&gt;passwd&lt;/code&gt;, both with the JID as an option.&lt;/p&gt;
&lt;h2 id=&#34;modules-enableddisabled-user-registration&#34;&gt;Modules enabled/disabled, user registration&lt;/h2&gt;
&lt;p&gt;Search for the line &lt;code&gt;modules_enabled&lt;/code&gt; and add the modules &lt;code&gt;http_files&lt;/code&gt; (file transfer), &lt;code&gt;turn_external&lt;/code&gt; (STUN/TURN server) and uncomment &lt;code&gt;csi_simple&lt;/code&gt; and &lt;code&gt;disco&lt;/code&gt; if they are commented.
Under &lt;code&gt;modules_disabled&lt;/code&gt; only leave &lt;code&gt;s2s&lt;/code&gt; uncommented. Finally, check if in the following lines &lt;code&gt;allow_registration&lt;/code&gt; is set to false, which is self explanatory.&lt;/p&gt;
&lt;h2 id=&#34;file-transfering&#34;&gt;File transfering&lt;/h2&gt;
&lt;p&gt;We will be configuring two components in the CFG file. You should add them after the &lt;code&gt;VirtualHost&lt;/code&gt; section.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;Component &amp;#34;upload.domain.org&amp;#34; &amp;#34;http_upload&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Right after we add &lt;code&gt;http_upload_file_size_limit = 20971520&lt;/code&gt; and &lt;code&gt;http_upload_expire_after = 60 * 60 * 24 * 7&lt;/code&gt;, for limiting the file size and setting its expiration.&lt;/p&gt;
&lt;p&gt;Now, in the global section (before &lt;code&gt;VirtualHost&lt;/code&gt;) add:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;-- HTTP/HTTPS ports
http_ports = { 5280 }
http_interfaces = { &amp;#34;*&amp;#34;, &amp;#34;::&amp;#34; }

https_ports = { 5281 }
https_interfaces = { &amp;#34;*&amp;#34;, &amp;#34;::&amp;#34; }
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If it is your case, remember to configure your firewall accordingly.&lt;/p&gt;
&lt;p&gt;After &lt;code&gt;VirtualHost&lt;/code&gt; we add:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;disco_items = {
	{ &amp;#34;upload.domain.org&amp;#34;, &amp;#34;File Sharing Service&amp;#34; },
} 
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;In the components section:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;Component &amp;#34;proxy.domain.org&amp;#34; &amp;#34;proxy65&amp;#34;
proxy65_address = &amp;#34;domain.org&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;There is no need to add &lt;code&gt;proxy65&lt;/code&gt; to the &lt;code&gt;modules_enabled&lt;/code&gt; list. This component lets users behind NAT transfer files.&lt;/p&gt;
&lt;h2 id=&#34;coturn-the-stunturn-server&#34;&gt;Coturn: The STUN/TURN server&lt;/h2&gt;
&lt;p&gt;Check if &lt;code&gt;coturn&lt;/code&gt; is running:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;systemctl status coturn
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If not start it:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;systemctl enable --now coturn
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Next thing to do is downloading and setting the correct modules from the community repository using &lt;code&gt;mercurial&lt;/code&gt;.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;hg clone https://hg.prosody.im/prosody-modules/ prosody-modules
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Now you can either copy (not recommended) the modules &lt;code&gt;mod_turn_external.lua&lt;/code&gt; and &lt;code&gt;mod_external_services.lua&lt;/code&gt; to &lt;code&gt;/usr/lib/prosody/modules&lt;/code&gt; or create another folder for the community plugins that will be installed and create symlinks for them.
For the second option, add the created folder to the plugins path in &lt;code&gt;prosody.cfg.lua&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;plugins_path { &amp;#34;usr/lib/prosody/modules&amp;#34;, &amp;#34;enabled/plugins/folder&amp;#34; } 
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Create the symlinks from the community downloaded folder to your plugins enabled folder (it depends on where you downloaded those modules):&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;ln -s /downloadedfolder/mod_turn_external/mod_turn_external.lua /enabled/folder
ln -s /downloadedfolder/mod_external_services/mod_external_services.lua /enabled/folder
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;We edit the &lt;code&gt;coturn&lt;/code&gt; cfg file that is located in &lt;code&gt;/etc/turnserver.conf&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;realm=turn.domain.org
static-auth-secret=yoursecretpassword
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Finally uncomment &lt;code&gt;use-auth-secret&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;We go back to our &lt;code&gt;prosody.cfg.lua&lt;/code&gt; file. In the global section add:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;turn_external_host = &amp;#34;turn.domain.org&amp;#34;
turn_external_secret = &amp;#34;yoursecretpassword&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;h1 id=&#34;very-important-certificates&#34;&gt;VERY IMPORTANT: Certificates&lt;/h1&gt;
&lt;p&gt;We need to generate certificates for the domain and every subdomain we are using for our components. Also, we need to check for some configuration options that could be missing or commented.&lt;/p&gt;
&lt;p&gt;First we generate:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;certbot -d domain.org --nginx
certbot -d upload.domain.org --nginx
certbot -d proxy.domain.org --nginx
certbot -d turn.domain.org --nginx
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The bot will give you some output in the terminal and prompt you for two options: select the second one every time.&lt;/p&gt;
&lt;p&gt;Now, we need to import/install the certs to prosody:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;prosodyctl --root cert import /etc/letsencrypt/live/
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The TLS encryption for the file transfering module needs to be explicitly configured, and for that we edit &lt;code&gt;prosody.cfg.lua&lt;/code&gt; and add to global:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;https_ssl = {
	certificate = &amp;#34;/etc/prosody/certs/upload.domain.org.crt&amp;#34;;
	key = &amp;#34;/etc/prosody/certs/upload.domain.org.key&amp;#34;;
}
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Pay attention to the extension names and double check that you got the right path and files for each line.&lt;/p&gt;
&lt;p&gt;Inside the same file, check the following line and set it to &lt;code&gt;true&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;c2s_require_encryption = true
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;We are done with our file transfering configuration.&lt;/p&gt;
&lt;p&gt;For the STUN/TURN server we also need to modify its CFG file &lt;code&gt;/etc/turnserver.conf&lt;/code&gt; to set a path for our certs:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;cert=/etc/letsencrypt/live/turn.domain.org/fullchain.pem
pkey=/etc/letsencrypt/live/turn.domain.org/privkey.pem
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Done. You can check for errors using &lt;code&gt;prosodyctl check&lt;/code&gt;. As a final note, I should add that if you are using a VPS you probably have
a firewall working. There are some ports that need to be forwarded: 5280, 5281, 5222, 5322, 5000, 3478. If you are not using a firewall I recommend you using
&lt;code&gt;ufw&lt;/code&gt; and start from there.&lt;/p&gt;
&lt;p&gt;Also, that this configuration is very personal. You can add more components (for example multichat groups). For that you should
RTFM, which is always ideal.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://prosody.im/doc&#34;&gt;Prosody Docs&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Escolios a un texto implícito: Selección</title>
      <link>https://drainerdomain.xyz/posts/frases-preferidas-de-nicol%C3%A1s-gomez-d%C3%A1vila/</link>
      <pubDate>Wed, 29 Dec 2021 00:01:30 -0300</pubDate>
      
      <guid>https://drainerdomain.xyz/posts/frases-preferidas-de-nicol%C3%A1s-gomez-d%C3%A1vila/</guid>
      <description>&lt;h2&gt;Autor&lt;/h2&gt;
&lt;p&gt;Nicolás Gómez Dávila fué un filósofo colombiano del siglo pasado. Un escritor que a pesar de ser millonario por herencia, decidió vivir una vida simple meditando y escribiendo
aforismos sobre el decadente mundo moderno. Reaccionario, entre sus grandes influenciadores se encuentran Tucídides y Nietzsche.&lt;/p&gt;
&lt;h2&gt;Texto&lt;/h2&gt;
&lt;p&gt;El texto está compuesto de frases cortísimas, pero que en ocasiones exigen a uno leerlas en reiteración.
El factor común de las frases es lo conciso y la simpleza con la que el autor se explaya. Como bien dice Dávila, buen escritor es quien tortura sus frases para no torturar
al lector.&lt;/p&gt;
&lt;p&gt;El elemento &amp;ldquo;implícito&amp;rdquo; del libro, es aquello que entiende la minoría hacia la cual el texto está dirigido.
La interpretación de la mayoría es cuestión irrelevante para la validez del contenido. Irónicamente, la potencial irritación e incomodidad del lector aborregado, es
lo que valida en buena medida cada frase del autor.&lt;/p&gt;
&lt;p&gt;Adelante las líneas que más me gustaron:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Quienes gimen sobre la estrechez del medio en que viven pretenden que los acontecimientos, los vecinos, los paisajes, les den la sensibilidad que la naturaleza les negó.&lt;/li&gt;
&lt;li&gt;El psicólogo habita los suburbios del alma, como el sociólogo la periferia de la sociedad.&lt;/li&gt;
&lt;li&gt;No logrando realizar lo que anhela, el “progreso” bautiza anhelo lo que realiza.&lt;/li&gt;
&lt;li&gt;La autenticidad del sentimiento depende de la claridad de la idea.&lt;/li&gt;
&lt;li&gt;El tiempo es menos temible porque mata que porque desenmascara.&lt;/li&gt;
&lt;li&gt;Las frases son piedrecillas que el escritor arroja en el alma del lector. El diámetro de las ondas concéntricas que desplazan depende de las dimensiones del estanque.&lt;/li&gt;
&lt;li&gt;El filósofo no es vocero de su época, sino ángel cautivo en el tiempo.&lt;/li&gt;
&lt;li&gt;Ni la religión se originó en la urgencia del asegurar la solidaridad social, ni las catedrales fueron construidas para fomentar el turismo.&lt;/li&gt;
&lt;li&gt;Mientras más graves sean los problemas, mayor es el número de ineptos que la democracia llama a resolverlos.&lt;/li&gt;
&lt;li&gt;Espasmos de vanidad herida, o de codicia conculcada, las doctrinas democráticas inventan los males que denuncian para justificar el bien que proclaman.&lt;/li&gt;
&lt;li&gt;La vulgaridad consiste en pretender ser lo que no somos.&lt;/li&gt;
&lt;li&gt;El placer es el relámpago irrisorio del contacto entre el deseo y la nostalgia.&lt;/li&gt;
&lt;li&gt;La sociedad premia las virtudes chillonas y los vicios discretos.&lt;/li&gt;
&lt;li&gt;El alma crece hacia dentro.&lt;/li&gt;
&lt;li&gt;El que ignora que dos adjetivos contrarios califican simultáneamente todo objeto no debe hablar de nada.&lt;/li&gt;
&lt;li&gt;Llámase buena educación los hábitos provenientes del respeto al superior transformados en trato entre iguales.&lt;/li&gt;
&lt;li&gt;Educar al hombre es impedirle la “libre expresión de su personalidad”.&lt;/li&gt;
&lt;li&gt;La literatura toda es contemporánea para el lector que sabe leer.&lt;/li&gt;
&lt;li&gt;El que menos entiende es el que se obstina en comprender más de lo que se puede comprender.&lt;/li&gt;
&lt;li&gt;Civilización es lo que logran salvar los viejos de la embestida de los idealistas jóvenes.&lt;/li&gt;
&lt;li&gt;La idea ajena sólo interesa al tonto cuando roza sus tribulaciones personales.&lt;/li&gt;
&lt;li&gt;Las desigualdades naturales amargarían la vida del demócrata, si la denigración no existiera.&lt;/li&gt;
&lt;li&gt;Cierta cortesía intelectual nos hace preferir la palabra ambigua. El vocablo unívoco somete el universo a su arbitraria rigidez.&lt;/li&gt;
&lt;li&gt;Entre adversarios inteligentes existe una secreta simpatía, ya que todos debemos nuestra inteligencia y nuestras virtudes a las virtudes y a la inteligencia de nuestro enemigo.&lt;/li&gt;
&lt;li&gt;Envejecer es catástrofe del cuerpo que nuestra cobardía convierte en catástrofe del alma.&lt;/li&gt;
&lt;li&gt;Todo fenómeno tiene su explicación sociológica, siempre necesaria y siempre insuficiente.&lt;/li&gt;
&lt;li&gt;No debemos concluir que todo es permitido, si Dios no existe, sino que nada importa. Los permisos resultan irrisorios cuando los significados se anulan.&lt;/li&gt;
&lt;li&gt;El pueblo no elige a quien lo cura, sino a quien lo droga.&lt;/li&gt;
&lt;li&gt;Entre la anarquía de los instintos y la tiranía de las normas se extiende el fugitivo y puro territorio de la perfección humana.&lt;/li&gt;
&lt;li&gt;La nivelación es el substituto bárbaro del orden.&lt;/li&gt;
&lt;li&gt;Cuando hoy nos dicen que alguien carece de personalidad, sabemos que se trata de un ser sencillo, probo, recto. La personalidad, en nuestro tiempo, es la suma de lo que impresiona al tonto.&lt;/li&gt;
&lt;li&gt;Los juicios injustos del hombre inteligente suelen ser verdades envueltas en mal humor.&lt;/li&gt;
&lt;li&gt;La presencia silenciosa de un tonto es el agente catalítico que precipita, en una conversación, todas las estupideces de que sean capaces los interlocutores más inteligentes.&lt;/li&gt;
&lt;li&gt;Hace doscientos años era lícito confiar en el futuro sin ser totalmente estúpido. ¿Hoy quién puede creer en las actuales profecías, puesto que somos ese espléndido porvenir de ayer?&lt;/li&gt;
&lt;li&gt;Marx gana batallas, pero Malthus ganará la guerra.&lt;/li&gt;
&lt;li&gt;El hombre es un animal que imagina ser hombre.&lt;/li&gt;
&lt;li&gt;Demagogia es el vocablo que emplean los demócratas cuando la democracia los asusta.&lt;/li&gt;
&lt;li&gt;Lo que aún protege al hombre, en nuestro tiempo, es su natural incoherencia. Es decir: su espontáneo horror ante consecuencias implícitas en principios que admira.&lt;/li&gt;
&lt;li&gt;El tonto no se inquieta cuando le dicen que sus ideas son falsas, sino cuando le sugieren que pasaron de moda.&lt;/li&gt;
&lt;li&gt;La historia erige y derrumba, incesantemente, las estatuas de virtudes distintas sobre el inmóvil pedestal de los mismos vicios.&lt;/li&gt;
&lt;li&gt;La violencia política deja menos cuerpos que almas podridas.&lt;/li&gt;
&lt;li&gt;Cada generación nueva acusa a las pretéritas de no haber redimido al hombre. Pero la abyección con que la nueva generación se adapta al mundo, después del fracaso de turno, es proporcional a la vehemencia de sus inculpaciones.&lt;/li&gt;
&lt;li&gt;La sociedad moderna se da el lujo de tolerar que todos digan lo que quieran, porque todos hoy coinciden básicamente en lo que piensan.&lt;/li&gt;
&lt;li&gt;La política es el arte de buscar la relación óptima entre la fuerza y la ética.&lt;/li&gt;
&lt;li&gt;Nadie sabe exactamente qué quiere mientras su adversario no se lo explica.&lt;/li&gt;
&lt;li&gt;Lo amenazante del aparato técnico es que pueda utilizarlo el que no tiene la capacidad intelectual del que lo inventa.&lt;/li&gt;
&lt;li&gt;El mayor triunfo de la ciencia parece estar en la velocidad creciente con que el bobo puede trasladar su bobería de un sitio a otro.&lt;/li&gt;
&lt;li&gt;La angustia ante el ocaso de la civilización es aflicción reaccionaria. El demócrata no puede lamentar la desaparición de lo que ignora.&lt;/li&gt;
&lt;li&gt;El tonto no se contenta con violar una regla ética: pretende que su transgresión se convierta en regla nueva.&lt;/li&gt;
&lt;li&gt;Tanto en país burgués, como en tierra comunista, reprueban el “escapismo” como vicio solitario, como perversión debilitante y abyecta. La sociedad moderna desacredita al fugitivo para que nadie escuche el relato de sus viajes. El arte o la historia, la imaginación del hombre o su trágico y noble destino, no son criterios que la mediocridad moderna tolere. El “escapismo” es la fugaz visión de esplendores abolidos y la probabilidad de un implacable veredicto sobre la sociedad actual.&lt;/li&gt;
&lt;li&gt;El comunista odia al capitalismo con el complejo de Edipo. El reaccionario lo mira tan sólo con xenofobia.&lt;/li&gt;
&lt;li&gt;Aún cuando el pecado colabora a la construcción de toda sociedad, la sociedad moderna es la hija predilecta de los pecados capitales.&lt;/li&gt;
&lt;li&gt;El que acepta el rango que la naturaleza le fija no se convierte en la mera ausencia de lo que no es. Aún lo más modesto tiene en su sitio un precio inestimable.&lt;/li&gt;
&lt;li&gt;La soledad es el laboratorio donde los lugares comunes se verifican.&lt;/li&gt;
&lt;li&gt;Hombre inteligente es el que mantiene su inteligencia a una temperatura independiente de la temperatura del medio que habita.&lt;/li&gt;
&lt;li&gt;Las sociedades agonizantes luchan contra la historia a fuerza de leyes, como los náufragos contra las aguas a fuerza de gritos. Breves remolinos.&lt;/li&gt;
&lt;li&gt;Hoy más que nunca el hombre corre detrás de cualquier tonto que lo invite al viaje, sordo al atalaya que avizora los caminos destruidos y los puentes derrumbados.&lt;/li&gt;
&lt;li&gt;El profeta que acertadamente pronostique la corrupción creciente de una sociedad se desacredita, porque mientras más crezca la corrupción, el corrompido la nota menos.&lt;/li&gt;
&lt;li&gt;Aún entre igualitarios fanáticos el más breve encuentro reestablece las desigualdades humanas.&lt;/li&gt;
&lt;li&gt;Vivir es el único valor del moderno. Aún el héroe moderno no muere sino en nombre de la vida.&lt;/li&gt;
&lt;li&gt;Lo grande, para la sensibilidad, no es suma aritmética de partes, sino calidad de ciertos conjuntos. La grandeza métrica, todo edificio moderno lo demuestra, no tiene relación con la grandeza monumental.&lt;/li&gt;
&lt;li&gt;El individualismo moderno se reduce a reputar personales y propias las opiniones compartidas entre todos.&lt;/li&gt;
&lt;li&gt;El estado moderno fabrica las opiniones que recoge después respetuosamente con el nombre de opinión pública.&lt;/li&gt;
&lt;li&gt;Las representaciones colectivas son, hoy, opiniones que los medios de propaganda imponen. Lo colectivo no es, hoy, lo que muchos venden sino lo que muchos compran.&lt;/li&gt;
&lt;li&gt;Al vulgo no le importa ser, sino creerse, libre. Lo que mutile su libertad no lo alarma, si no se lo dicen.&lt;/li&gt;
&lt;li&gt;El proletariado no detesta en la burguesía sino la dificultad económica de imitarla.&lt;/li&gt;
&lt;li&gt;El sufragio universal no pretende que los intereses de la mayoría triunfen, sino que la mayoría lo crea.&lt;/li&gt;
&lt;li&gt;El crecimiento de la población inquieta al demógrafo, solamente cuando teme que estorbe el progreso económico o que dificulte la alimentación de las masas. Pero que el hombre necesite soledad, que la proliferación humana produzca sociedades crueles, que se requiera distancia entre los hombres para que el espíritu respire, lo tiene sin cuidado. La calidad del hombre no le importa.&lt;/li&gt;
&lt;li&gt;El consumo, para el progresista, se justifica sólo como medio de producción.&lt;/li&gt;
&lt;li&gt;Dos seres inspiran hoy particular conmiseración: el político burgués que la historia pacientemente acorrala y el filósofo marxista que la historia pacientemente refuta.&lt;/li&gt;
&lt;li&gt;El progresista cree que todo se torna pronto obsoleto, salvo sus ideas.&lt;/li&gt;
&lt;li&gt;En el lóbrego y sofocante edificio del mundo, el claustro es el espacio abierto al sol y al aire.&lt;/li&gt;
&lt;li&gt;La idea del “libre desarrollo de la personalidad” parece admirable mientras no se tropieza con individuos cuya personalidad se desarrolló libremente.&lt;/li&gt;
&lt;li&gt;Cuando una mayoría lo derrota, el verdadero demócrata no debe meramente declararse vencido, sino confesar además que no tenía razón.&lt;/li&gt;
&lt;li&gt;Llámase liberal el que no entiende que está sacrificando la libertad sino cuando es demasiado tarde para salvarla.&lt;/li&gt;
&lt;li&gt;La sociedad industrial es la expresión y el fruto de almas donde las virtudes destinadas a servir usurpan el puesto de las destinadas a mandar.&lt;/li&gt;
&lt;li&gt;La verdad está en la historia, pero la historia no es la verdad.&lt;/li&gt;
&lt;li&gt;La literatura contemporánea, en cualquier época, es el peor enemigo de la cultura. El tiempo limitado del lector se gasta en leer mil libros mediocres que embotan su sentido crítico y lesionan su sensibilidad literaria.&lt;/li&gt;
&lt;li&gt;La civilización no es una sucesión sin fin de inventos, sino la tarea de asegurar la duración de ciertas cosas.&lt;/li&gt;
&lt;li&gt;Un solo ser puede bastarte. Pero que jamás te baste el Hombre.&lt;/li&gt;
&lt;li&gt;De la suma de todos los puntos de vista no resulta el relieve del objeto, sino su confusión.&lt;/li&gt;
&lt;li&gt;En un siglo donde los medios de publicidad divulgan infinitas tonterías, el hombre culto no se define por lo que sabe sino por lo que ignora.&lt;/li&gt;
&lt;li&gt;Los antiguos veían en el héroe histórico o mítico, en Alejandro o en Aquiles, el módulo de la vida humana. El gran hombre era paradigmático, su existencia ejemplar. El patrón del demócrata, al contrario, es el hombre vulgar. El modelo democrático debe rigurosamente carecer de todo atributo admirable.&lt;/li&gt;
&lt;li&gt;Verdadero aristócrata es el que tiene vida interior. Cualquiera que sea su origen, su rango, o su fortuna.&lt;/li&gt;
&lt;li&gt;No hay tontería en que el hombre moderno no sea capaz de creer, siempre que eluda creer en Cristo.&lt;/li&gt;
&lt;li&gt;Sociedad aristocrática es aquella donde el anhelo de la perfección personal es el alma de las instituciones sociales.&lt;/li&gt;
&lt;li&gt;La libertad, para el demócrata, no consiste en poder decir todo lo que piensa, sino en no tener que pensar todo lo que dice.&lt;/li&gt;
&lt;li&gt;El anonimato de la ciudad moderna es tan intolerable como la familiaridad de las costumbres actuales. La vida debe parecerse a un salón de gente bien educada, donde todos se conocen pero donde nadie se abraza.&lt;/li&gt;
&lt;li&gt;El individuo busca el calor de la muchedumbre, en este siglo, para defenderse del frío que emana el cadáver del mundo.&lt;/li&gt;
&lt;li&gt;Al desaparecer su profundidad religiosa, las cosas se reducen a una superficie sin espesor donde se transparenta la nada.&lt;/li&gt;
&lt;li&gt;La muerte de Dios es opinión interesante, pero que no afecta a Dios.&lt;/li&gt;
&lt;li&gt;Los contemporáneos respetan los libros tediosos cuando son pretenciosos y pedantes. La posteridad se ríe de esos ídolos polvorientos, para venerar, claro está, a los análogos santones de su tiempo.&lt;/li&gt;
&lt;li&gt;La filosofía que elude el problema del mal es cuento de hadas para niños bobos.&lt;/li&gt;
&lt;li&gt;El vulgo sólo cree pensar libremente cuando su razón capitula en manos de entusiasmos colectivos.&lt;/li&gt;
&lt;li&gt;En sociedades donde todos se creen iguales, la inevitable superioridad de unos pocos hace que los demás se sientan fracasados. Inversamente, en sociedades donde la desigualdad es norma, cada cual se instala en su diferencia propia, sin sentir la urgencia, ni concebir la posibilidad, de compararse. Sólo una estructura jerárquica es compasiva con los mediocres y los humildes.&lt;/li&gt;
&lt;li&gt;Así como en nuestra sociedad triunfan los bajos fondos sociales, así en nuestra literatura triunfan los bajos fondos del alma.&lt;/li&gt;
&lt;li&gt;Para el tonto sólo son auténticos los comportamientos conformes a la última tésis psicológica de moda. El tonto, al observarse a sí mismo, se ve siempre corroborando experimentalmente cualquier bobada que presuma científica. ¿Mis hermanos? Si. ¿Mis iguales? No. Porque los hay menores y los hay mayores.&lt;/li&gt;
&lt;li&gt;La vida es taller de jerarquías. Sólo la muerte es demócrata.&lt;/li&gt;
&lt;li&gt;Sería más fácil resolver los problemas modernos, si, por ejemplo, cupiera sostener utópicamente que sólo la avidez mercantil del fabricante multiplica los artículos plásticos, y no la admiración idiota de los presuntos compradores.&lt;/li&gt;
&lt;li&gt;El técnico se cree un ser superior, porque sabe lo que, por definición, cualquiera puede aprender.&lt;/li&gt;
&lt;li&gt;El mundo moderno censura con acrimonia a quienes le “voltean la espalda a la vida”. Como si fuese posible saber con certeza que voltearle la espalda a la vida no sea volver la cara hacia la luz.&lt;/li&gt;
&lt;li&gt;Frente a tanto intelectual soso, a tanto artista sin talento, a tanto revolucionario estereotipado, un burgués sin pretensiones parece una estatua griega.&lt;/li&gt;
&lt;li&gt;Periodistas y políticos no saben distinguir entre el desarrollo de una idea y la expansión de una frase.&lt;/li&gt;
&lt;li&gt;Los que le quitan al hombre sus cadenas liberan sólo a un animal.&lt;/li&gt;
&lt;li&gt;La primera revolución estalló cuando se le ocurrió a algún tonto que el derecho se podía inventar.&lt;/li&gt;
&lt;li&gt;Tanta es la fe del marxista en Marx que usualmente se abstiene de leerlo.&lt;/li&gt;
&lt;li&gt;El más repulsivo y grotesco de los espectáculos es el de la superioridad de profesor vivo sobre genio muerto.&lt;/li&gt;
&lt;li&gt;La tolerancia consiste en una firme decisión de permitir que insulten todo lo que pretendemos querer y respetar, siempre que no amenacen nuestras comodidades materiales. El hombre moderno, liberal, demócrata, progresista, siempre que no le pisen los callos, tolera que le empuerquen el alma.&lt;/li&gt;
&lt;li&gt;El moderno ya no se atreve a predicar que el individuo nazca como página blanca. Demasiados descalabros le enseñaron que somos los herederos agobiados de nuestra familia, nuestra raza, nuestra sangre. La sangre no es líquido inocente, sino viscosa pasta histórica.&lt;/li&gt;
&lt;li&gt;La civilización moderna se estaría suicidando, si verdaderamente estuviera logrando educar al hombre.&lt;/li&gt;
&lt;li&gt;La experiencia del hombre que “ha vivido mucho” suele reducirse a unas anécdotas triviales con que adorna una imbecilidad incurable.&lt;/li&gt;
&lt;li&gt;El izquierdista inteligente admite que su generación no construirá la sociedad perfecta, pero confía en una generación futura. Su inteligencia descubre su impotencia personal, pero su izquierdismo le impide descubrir la impotencia del hombre.&lt;/li&gt;
&lt;li&gt;Esa liberación de la humanidad que cantó el siglo XIX no resultó ser más que el turismo internacional.&lt;/li&gt;
&lt;li&gt;Toda sociedad no jerarquizada se parte en dos.&lt;/li&gt;
&lt;li&gt;El jurista, en las democracias, no es un experto en leyes, sino en funcionarios.&lt;/li&gt;
&lt;li&gt;Tedio es el antónimo de soledad.&lt;/li&gt;
&lt;li&gt;Los dioses son campesinos que no acompañan al hombre sino hasta las puertas de las grandes urbes.&lt;/li&gt;
&lt;li&gt;El moderno se niega a sí mismo toda dimensión metafísica y se juzga mero objeto de ciencia. Pero chilla cuando lo exterminan como tal.&lt;/li&gt;
&lt;li&gt;Los medios actuales de comunicación le permiten al ciudadano moderno enterarse de todo sin entender nada.&lt;/li&gt;
&lt;li&gt;El cristianismo degenera, al abolir sus viejos idiomas litúrgicos, en sectas extravagantes y toscas. Roto el contacto con la antigüedad griega y latina, perdida su herencia medieval y patrística, cualquier bobalicón se convierte en su exégeta.&lt;/li&gt;
&lt;li&gt;El hombre inteligente llega pronto a conclusiones reaccionarias. Hoy, sin embargo, el consenso universal de los tontos lo acobarda. Cuando lo interrogan en público niega ser Galileo.&lt;/li&gt;
&lt;li&gt;La razón no es substituto de la fe, así como el color no es substituto del sonido.&lt;/li&gt;
&lt;li&gt;Ya no existen ancianos sino jóvenes decrépitos.&lt;/li&gt;
&lt;li&gt;Las jerarquías son celestes. En el Infierno todos son iguales.&lt;/li&gt;
&lt;li&gt;El igualitario se exaspera viendo que la instrucción obligatoria sólo borra la desigualdad ficticia para agravar la congénita.&lt;/li&gt;
&lt;li&gt;El pecado del rico no es la riqueza, sino la importancia exclusiva que le atribuye.&lt;/li&gt;
&lt;li&gt;Soy el asilo de todas las ideas desterradas por la ignominia moderna.&lt;/li&gt;
&lt;li&gt;La mujer tiene la temperatura intelectual del medio en que vive: revolucionaria vehemente o conservadora impertérrita, según las circustancias. Reaccionaria nunca puede ser.&lt;/li&gt;
&lt;li&gt;Cuando la conciencia moderna suspende sus rutinas económicas sólo oscila entre la angustia política y la obsesión sexual.&lt;/li&gt;
&lt;li&gt;Los hábiles aceptan envilecerse para triunfar. Y terminan fracasando porque se envilecieron.&lt;/li&gt;
&lt;li&gt;El hombre inteligente inquieta al tonto y a la vez le parece risible.&lt;/li&gt;
&lt;li&gt;La historia es una sucesión de noches y de días. De días breves y de noches largas.&lt;/li&gt;
&lt;li&gt;Hay un analfabetismo del alma que ningún diploma cura.&lt;/li&gt;
&lt;li&gt;El abuso de la imprenta se debe al método científico y a la estética expresionista. Al primero porque le permite a cualquier mediocre escribir una monografía correcta e inútil, a la segunda porque legitima las efusiones de cualquier tonto.&lt;/li&gt;
&lt;li&gt;El periodismo fue la cuna de la crítica literaria. La universidad fue su tumba.&lt;/li&gt;
&lt;li&gt;El tonto llama “prejuicios” las conclusiones que no entiende.&lt;/li&gt;
&lt;li&gt;Los temas intocables abundan en tiempos democráticos. Raza, morbos, clima, resultan allí substancias caústicas. Nefando es allí lo que pueda implicar que la humanidad no es causa sui.&lt;/li&gt;
&lt;li&gt;En tiempos aristocráticos lo que tiene valor no tiene precio; en tiempos democráticos lo que no tiene precio no tiene valor.&lt;/li&gt;
&lt;li&gt;“Encontrarse”, para el moderno, quiere decir disolverse en una colectividad cualquiera.&lt;/li&gt;
&lt;li&gt;La grandilocuencia del mensajero suele ser proporcional a la insignificancia del mensaje.&lt;/li&gt;
&lt;li&gt;El terrorismo no surge donde existen opresores y oprimidos, sino donde los que se dicen oprimidos no confrontan opresores.&lt;/li&gt;
&lt;li&gt;El izquierdista emula al devoto que sigue venerando la reliquia después de comprobar la impostura del milagro.&lt;/li&gt;
&lt;li&gt;Lo que el reaccionario dice nunca interesa a nadie. Ni cuando lo dice, porque parece absurdo; ni al cabo de unos años, porque parece obvio.&lt;/li&gt;
&lt;li&gt;Sólo el fracaso político de la derecha equilibra, en nuestro tiempo, el fracaso literario de la izquierda.&lt;/li&gt;
&lt;li&gt;Para actuar se requiere una noción operacional del objeto, pero se requiere una noción poética para comprender.&lt;/li&gt;
&lt;li&gt;El filósofo no demuestra, muestra. Nada dice al que no ve.&lt;/li&gt;
&lt;li&gt;Sociedad civilizada es aquella donde dolor y placer físico no son los argumentos únicos.&lt;/li&gt;
&lt;li&gt;“Concientizar” es la variante púdica de adoctrinar.&lt;/li&gt;
&lt;li&gt;Tan sólo entre amigos no hay rangos.&lt;/li&gt;
&lt;li&gt;Los problemas metafísicos no acosan al hombre para que los resuelva, sino para que los viva.&lt;/li&gt;
&lt;li&gt;El mimetismo embelesado del meteco es el disolvente de las culturas. Una cultura, en efecto, no perece absorbiendo elementos exóticos, sino siendo asimilada y difundida por mentes foráneas.&lt;/li&gt;
&lt;li&gt;Las culturas moribundas intentan sobrevivir imitándose sistemáticamente o radicalmente innovando. La salud espiritual está, al contrario, en prolongar sin imitar y en innovar sin abolir.&lt;/li&gt;
&lt;li&gt;Reaccionarios y marxistas viviremos igualmente incómodos en la sociedad futura; pero los marxistas mirarán con ojos de padre estupefacto, nosotros con ironía de forastero.&lt;/li&gt;
&lt;li&gt;Porque oyó decir que las proposiciones religiosas son metáforas, el tonto piensa que son ficciones.&lt;/li&gt;
&lt;li&gt;Reeducar al hombre consistirá en enseñarle de nuevo a estimar correctamente los objetos, i.e. a necesitar pocos.&lt;/li&gt;
&lt;li&gt;Sin la influencia de lo que el tonto llama retórica, la historia no hubiese sido más que un tumulto sórdido.&lt;/li&gt;
&lt;li&gt;El hombre emerge de la bestia al jerarquizar sus instintos.&lt;/li&gt;
&lt;li&gt;El socialismo nació como nostalgia de la integración social destruida por el atomismo burgués. Pero no entendió que la integración social no es compactación totalitaria de individuos, sino totalidad sistemática de una jerarquía.&lt;/li&gt;
&lt;li&gt;El liberalismo pregona el derecho del individuo de envilecerse, siempre que su envilecimiento no estorbe el envilecimiento del vecino.&lt;/li&gt;
&lt;li&gt;Si se aspira tan sólo a dotar de un número creciente de artículos a un número creciente de seres, sin que importe la calidad de los seres, ni de los artículos, el capitalismo es la solución perfecta.&lt;/li&gt;
&lt;li&gt;Asistimos hoy a una proliferación exuberante de muchedumbres no-europeas, pero por ninguna parte asoman civilizaciones nuevas, amarillas, cobrizas, o negras.&lt;/li&gt;
&lt;li&gt;Mediante la noción de “evolución cultural”, el antropólogo demócrata trata de esquivar las interrogaciones biológicas.&lt;/li&gt;
&lt;li&gt;Nadar contra la corriente no es necedad si las aguas corren hacia cataratas.&lt;/li&gt;
&lt;li&gt;Enseñar literatura es enseñarle al alumno a creer que admira lo que no admira.&lt;/li&gt;
&lt;li&gt;Las lenguas clásicas tienen valor educativo porque están a salvo de la vulgaridad con que la vida moderna corrompe las lenguas en uso.&lt;/li&gt;
&lt;li&gt;El poder no corrompe, libera la corrupción larvada.&lt;/li&gt;
&lt;li&gt;Tres factores han corrompido, en América, la noble reciedumbre de la lengua española: el solecismo mental de inmigrante no-hispano, la facundia pueril del negro, la melancolía hurana y sumisa del indio.&lt;/li&gt;
&lt;li&gt;La izquierda llama derechista a gente situada meramente a su derecha. El reaccionario no está a la derecha de la izquierda, sino enfrente.&lt;/li&gt;
&lt;li&gt;Imposible convencer al tonto de que existen placeres superiores a los que compartimos con los demás animales.&lt;/li&gt;
&lt;li&gt;En una democracia sólo sonríe a los demás el político en busca de votos. Los demás no pueden darse el lujo de una mutua sonrisa: todos son rivales de todos.&lt;/li&gt;
&lt;li&gt;Desde hace más de un siglo no existe clase alta. Apenas un sector más pretencioso de clase media.&lt;/li&gt;
&lt;li&gt;Cada día resulta más fácil saber lo que debemos despreciar: lo que el moderno admira y el periodismo elogia.&lt;/li&gt;
&lt;li&gt;Libertad es el término que más se emplea sin saber que significa.&lt;/li&gt;
&lt;li&gt;Mientras más tarda la naturaleza en vengar los delitos que contra ella se cometen, más cruel es su venganza.&lt;/li&gt;
&lt;li&gt;A los enemigos del sufragio universal no deja de sorprendernos el entusiasmo que despierta la elección de un puñado de incapaces por un acervo de incompetentes.&lt;/li&gt;
&lt;li&gt;El horror del progreso sólo puede medirlo el que ha conocido un paisaje antes y después que el progreso lo transforme.&lt;/li&gt;
&lt;li&gt;La tierra no será nunca un paraíso, pero quizás se pudiera evitar que siga aproximándose a una imitación cursi del Infierno.&lt;/li&gt;
&lt;li&gt;Resulta imposible convencer al hombre de negocios de que una actividad rentable pueda ser inmoral.&lt;/li&gt;
&lt;li&gt;El público no comienza a acoger una idea sino cuando los contemporáneos inteligentes comienzan a abandonarla. Al vulgo no llega sino la luz de estrellas extintas.&lt;/li&gt;
&lt;li&gt;Los politólogos analizan sabiamente los gaznidos, gañidos, gruñidos, de los animales embarcados, mientras los remolinos empujan silenciosamente el barco hacia una u otra orilla.&lt;/li&gt;
&lt;li&gt;El pensamiento religioso no progresa, como el pensamiento científico, sino profundiza.&lt;/li&gt;
&lt;li&gt;Los filósofos suelen influir más con lo que parecen haber dicho que con lo que en verdad dijeron.&lt;/li&gt;
&lt;li&gt;Cuando el tirano es la ley anónima, el moderno se cree libre.&lt;/li&gt;
&lt;li&gt;El hombre es animal educable, siempre que no caiga en manos de pedagogos progresistas.&lt;/li&gt;
&lt;li&gt;Conocer bien un episodio histórico consiste en no observarlo a través de prejuicios democráticos.&lt;/li&gt;
&lt;li&gt;El hombre moderno no defiende enérgicamente sino su derecho a la crápula.&lt;/li&gt;
&lt;li&gt;Sólo es transparente el diálogo entre dos solitarios.&lt;/li&gt;
&lt;li&gt;Los que no queremos admitir sino lo que vale, les pareceremos siempre ingenuos a los que no reconocen sino lo que rige.&lt;/li&gt;
&lt;li&gt;El moderno cree vivir en un pluralismo de opiniones, cuando lo que hoy impera es una unanimidad asfixiante.&lt;/li&gt;
&lt;li&gt;Los espectáculos llamados técnicamente “para adultos” no son para mentes adultas.&lt;/li&gt;
&lt;li&gt;Llaman “fomentar la cultura” coronar a mediocres.&lt;/li&gt;
&lt;li&gt;El tonto viendo que las costumbres cambian dice que la moral varía.&lt;/li&gt;
&lt;li&gt;El problema de la creciente inflación económica sería soluble, si la mentalidad moderna no opusiera una resistencia invencible a cualquier intento de restringir la codicia humana.&lt;/li&gt;
&lt;li&gt;El pueblo que se despierta, primero grita, luego se emborracha, roba, asesina, y después se vuelve de nuevo a dormir.&lt;/li&gt;
&lt;li&gt;El moderno llama “cambio” caminar más rápidamente por el mismo camino en la misma dirección. El mundo, en los últimos trescientos años, no ha cambiado sino en ese sentido. La simple propuesta de un verdadero cambio escandaliza y aterra al moderno.&lt;/li&gt;
&lt;/ol&gt;
</description>
    </item>
    
    <item>
      <title>Donate</title>
      <link>https://drainerdomain.xyz/donate/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://drainerdomain.xyz/donate/</guid>
      <description>&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img src=&#34;https://drainerdomain.xyz/svg/bitcoin.svg&#34; width=&#34;48&#34; height=&#34;48&#34;/&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://drainerdomain.xyz/images/qr-btc.webp&#34;&gt;bc1qweh3myty23cqp2aqc3g5efjq7pvvlssgs846ap&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img src=&#34;https://drainerdomain.xyz/svg/monero.svg&#34; width=&#34;48&#34; height=&#34;48&#34;/&gt;&lt;/td&gt;
&lt;td&gt;&lt;font size=&#34;2&#34;&gt;&lt;a href=&#34;https://drainerdomain.xyz/images/qr-xmr.webp&#34;&gt;6rbzBqUNgaNgRFDMUfgpN911CZGjWbG2ZrJZrcbJ9dJ1e51mn22PaXJoe5PDqJivSGy7sB913RG3EJnkX2zTDr7GgPAL2W&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
</description>
    </item>
    
    <item>
      <title>Library</title>
      <link>https://drainerdomain.xyz/library/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://drainerdomain.xyz/library/</guid>
      <description>&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Book&lt;/th&gt;
&lt;th&gt;Author&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Brave New World&lt;/td&gt;
&lt;td&gt;Aldous Huxley&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Foucault&amp;rsquo;s Pendulum&lt;/td&gt;
&lt;td&gt;Umberto Eco&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Leviathan&lt;/td&gt;
&lt;td&gt;Thomas Hobbes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1984&lt;/td&gt;
&lt;td&gt;George Orwell&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Animal Farm&lt;/td&gt;
&lt;td&gt;George Orwell&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Art Of War&lt;/td&gt;
&lt;td&gt;Sun Tzu&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Republic&lt;/td&gt;
&lt;td&gt;Plato&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pensées&lt;/td&gt;
&lt;td&gt;Blaise Pascal&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Prince&lt;/td&gt;
&lt;td&gt;Niccolo Machiavelli&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1666&lt;/td&gt;
&lt;td&gt;Robert Sepehr&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Judaism&amp;rsquo;s Strange Gods&lt;/td&gt;
&lt;td&gt;Michael A. Hoffman&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Bell Curve&lt;/td&gt;
&lt;td&gt;Richard J. Herrnstein &amp;amp; Charles Murray&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Escolios A Un Texto Implícito&lt;/td&gt;
&lt;td&gt;Nicolás Gomez Dávila&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Industrial Society And Its Consequences&lt;/td&gt;
&lt;td&gt;Theodore Kaczinsky&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Basic Economics&lt;/td&gt;
&lt;td&gt;Thomas Sowell&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Wealth Of Nations&lt;/td&gt;
&lt;td&gt;Adam Smith&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Confessions&lt;/td&gt;
&lt;td&gt;St. Augustine&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Social Contract&lt;/td&gt;
&lt;td&gt;Jean-Jacques Rousseau&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Spirit Of Laws&lt;/td&gt;
&lt;td&gt;Montesquieu&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The World As Will And Representation&lt;/td&gt;
&lt;td&gt;Schopenhauer&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fear And Trembling&lt;/td&gt;
&lt;td&gt;Soren Kierkegaard&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Encyclopedia Of The Philosophical Sciences&lt;/td&gt;
&lt;td&gt;Hegel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Phaedo&lt;/td&gt;
&lt;td&gt;Plato&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tao Te Ching&lt;/td&gt;
&lt;td&gt;Lao Tzu&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Eutyphro&lt;/td&gt;
&lt;td&gt;Plato&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Apology&lt;/td&gt;
&lt;td&gt;Plato&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Crito&lt;/td&gt;
&lt;td&gt;Plato&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Beyond Good And Evil&lt;/td&gt;
&lt;td&gt;Friedrich Nietzsche&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Twilight Of The Idols&lt;/td&gt;
&lt;td&gt;Friedrich Nietzsche&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;On Sophistical Refutations&lt;/td&gt;
&lt;td&gt;Aristotle&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Nicomachean Ethics&lt;/td&gt;
&lt;td&gt;Aristotle&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Theological-Political Treatise&lt;/td&gt;
&lt;td&gt;Baruch Spinoza&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How To Win Friends &amp;amp; Influence People&lt;/td&gt;
&lt;td&gt;Dale Carnegie&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Democracy, The God That Failed&lt;/td&gt;
&lt;td&gt;Hoppe&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Letters From A Stoic&lt;/td&gt;
&lt;td&gt;Seneca&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Meditations&lt;/td&gt;
&lt;td&gt;Marcus Aurelius&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Capitalism And Freedom&lt;/td&gt;
&lt;td&gt;Milton Friedman&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;A History Of Central Banking And The Enslavement Of Mankind&lt;/td&gt;
&lt;td&gt;Stephen M. Goodson&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Critique Of Pure Reason&lt;/td&gt;
&lt;td&gt;Immanuel Kant&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Critique Of Practical Reason&lt;/td&gt;
&lt;td&gt;Immanuel Kant&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Phenomenology Of Spirit&lt;/td&gt;
&lt;td&gt;Hegel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Morals And Dogma&lt;/td&gt;
&lt;td&gt;Albert Pike&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Two Hundred Years Together&lt;/td&gt;
&lt;td&gt;Alexander Solzhenitsyn&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Gulag Archipelago Vol. 1, 2, 3&lt;/td&gt;
&lt;td&gt;Alexander Solzhenitsyn&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Harassment Architecture&lt;/td&gt;
&lt;td&gt;Mike Ma&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Understanding Media: The Extensions Of Man&lt;/td&gt;
&lt;td&gt;Marshall McLuhan &amp;amp; Lewish H. Lapham&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Esoteric Hollywood Sex, Cults And Symbols In Film Vol. I, II&lt;/td&gt;
&lt;td&gt;Jay Dyer&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Rosicrucian Enlightenment&lt;/td&gt;
&lt;td&gt;Frances A. Yates&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Occult Philosophy In The Elizabethan Age&lt;/td&gt;
&lt;td&gt;Frances A. Yates&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Secret Doctrine&lt;/td&gt;
&lt;td&gt;Helena Petrovna Blavatsky&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Holy Bible&lt;/td&gt;
&lt;td&gt;KJV&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Nihilism: The Root Of The Revolution Of The Modern Age&lt;/td&gt;
&lt;td&gt;Seraphim Rose&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Being And Time&lt;/td&gt;
&lt;td&gt;Martin Heidegger&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The C Programming Language&lt;/td&gt;
&lt;td&gt;Brian W. Kerninghan &amp;amp; Dennis M. Ritchie&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Yellow Book&lt;/td&gt;
&lt;td&gt;Rob Miles&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Linux Command Line And Shell Scripting Bible&lt;/td&gt;
&lt;td&gt;Richard Blum &amp;amp; Christine Bresnahan&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How Linux Works: What Every Superuser Should Know&lt;/td&gt;
&lt;td&gt;Brian Ward&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mastering Monero&lt;/td&gt;
&lt;td&gt;SerHack&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The International Jew&lt;/td&gt;
&lt;td&gt;Henry Ford&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;On The Jewish Question&lt;/td&gt;
&lt;td&gt;Karl Marx&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Culture Of Critique&lt;/td&gt;
&lt;td&gt;Kevin McDonald&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Dialectic Of Enlightenment&lt;/td&gt;
&lt;td&gt;Max Horkeihmer &amp;amp; Theodor W. Adorno&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;On The Jews And Their Lies&lt;/td&gt;
&lt;td&gt;Martin Luther&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Blank Slate: The Modern Denial Of Human Nature&lt;/td&gt;
&lt;td&gt;Steven Pinker&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fashionable Nonsense: Postmodern Intellectuals&amp;rsquo; Abuse Of Science&lt;/td&gt;
&lt;td&gt;Alan Sokal &amp;amp; Jean Bricmont&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Politics&lt;/td&gt;
&lt;td&gt;Aristotle&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The City Of God&lt;/td&gt;
&lt;td&gt;St. Augustine&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;History Of The Peloponnesian War&lt;/td&gt;
&lt;td&gt;Thucydides&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Discourses On Livy&lt;/td&gt;
&lt;td&gt;Niccolo Machiavelli&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Two Treatises Of Goverment&lt;/td&gt;
&lt;td&gt;John Locke&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;On Liberty&lt;/td&gt;
&lt;td&gt;John S. Mill&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Rights Of Man&lt;/td&gt;
&lt;td&gt;Thomas Paine&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Institutes Of The Christian Religion&lt;/td&gt;
&lt;td&gt;John Calvin&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;A Treatise Of Human Nature&lt;/td&gt;
&lt;td&gt;David Hume&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Reflections On The Revolution Of France&lt;/td&gt;
&lt;td&gt;Edmund Burke&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Positive Masculinity&lt;/td&gt;
&lt;td&gt;Rollo Tomassi&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How To Judge People By What They Look Like&lt;/td&gt;
&lt;td&gt;Edward Dutton&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Politics Of Friendship&lt;/td&gt;
&lt;td&gt;Jacques Derrida&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
</description>
    </item>
    
    <item>
      <title>Software</title>
      <link>https://drainerdomain.xyz/software/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://drainerdomain.xyz/software/</guid>
      <description>&lt;ul&gt;
&lt;li&gt;OS: &lt;a href=&#34;https://artixlinux.org/&#34;&gt;Artix Linux&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Window Manager: &lt;a href=&#34;https://i3wm.org/&#34;&gt;i3&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Shell: &lt;a href=&#34;https://zsh.org/&#34;&gt;zsh&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Status Bar: &lt;a href=&#34;https://polybar.github.io/&#34;&gt;polybar&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Terminal Emulator: &lt;a href=&#34;https://st.suckless.org/&#34;&gt;st&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;RSS Feeder: &lt;a href=&#34;https://newsboat.org/&#34;&gt;newsboat&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Video Player: &lt;a href=&#34;https://mpv.io/&#34;&gt;mpv&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Music Player: &lt;a href=&#34;https://www.musicpd.org/&#34;&gt;mpd&lt;/a&gt; + &lt;a href=&#34;https://rybczak.net/ncmpcpp/&#34;&gt;ncmpcpp&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Text Editor/Coding: &lt;a href=&#34;https://www.neovim.io/&#34;&gt;neovim&lt;/a&gt; with:
&lt;ul&gt;
&lt;li&gt;emmet&lt;/li&gt;
&lt;li&gt;coc&lt;/li&gt;
&lt;li&gt;NERDTree&lt;/li&gt;
&lt;li&gt;Goyo&lt;/li&gt;
&lt;li&gt;devicons&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Menu: &lt;a href=&#34;https://tools.suckless.org/dmenu/&#34;&gt;dmenu&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Web Browser: &lt;a href=&#34;https://mozilla.org&#34;&gt;Firefox&lt;/a&gt; with:
&lt;ul&gt;
&lt;li&gt;arkenfox user.js&lt;/li&gt;
&lt;li&gt;uMatrix&lt;/li&gt;
&lt;li&gt;Privacy Redirect&lt;/li&gt;
&lt;li&gt;Decentraleyes&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Screenshots: &lt;a href=&#34;https://github.com/naelstrof/maim&#34;&gt;maim&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Screenrecord: &lt;a href=&#34;https://ffmpeg.org/&#34;&gt;ffmpeg&lt;/a&gt; + &lt;a href=&#34;https://www.freedesktop.org/wiki/Software/PulseAudio&#34;&gt;pulseaudio&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Image Viewer: &lt;a href=&#34;https://feh.finalrewind.org/&#34;&gt;feh&lt;/a&gt; and &lt;a href=&#34;https://github.com/muennich/sxiv&#34;&gt;sxiv&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Document Viewer: &lt;a href=&#34;https://github.com/pwmt/zathura&#34;&gt;zathura&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Backups: &lt;a href=&#34;https://rsync.samba.org/&#34;&gt;rsync&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Song Recognition: &lt;a href=&#34;https://github.com/marin-m/SongRec&#34;&gt;SongRec&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Video Editing: &lt;a href=&#34;https://shotcut.org&#34;&gt;ShotCut&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;XMPP Client: &lt;a href=&#34;https://gajim.org&#34;&gt;Gajim&lt;/a&gt; on PC, &lt;a href=&#34;https://conversations.im&#34;&gt;Conversations&lt;/a&gt; on Android.&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
  </channel>
</rss>