-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
7418 lines (7136 loc) · 340 KB
/
index.html
File metadata and controls
7418 lines (7136 loc) · 340 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<link href="style.css" media="all" rel="stylesheet" type="text/css" />
<!-- Google Font: Poppins Regular 400 -->
<!-- <link href="https://fonts.googleapis.com" rel="preconnect" />
<link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect" />
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet" /> -->
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<!--& required meta data -->
<meta content="Dietz" name="Author" />
<!--& SEO title -->
<title>Pixelated Pathways | Home</title>
<!--& SEO meta data -->
<meta
content="The go-to place for internet stuff. Some links, some guides and some spider webs. I like free stuff and open-source stuff, so most of what is included on this page carries these attributes."
name="description" />
<meta content="Digital Legacy, tools, free, guides, internet, how to, FMHY" name="keywords" />
<style>
@font-face {
font-family: jet;
src: url(jetbrainsmono-regular.woff2);
}
* {
font-family: jet;
}
</style>
</head>
<body>
<div class="top-margin-container">
<input type="text" id="searchInput" placeholder="Search...">
<div id="search-results"></div>
<button class="myBtn2" id="scrollBackButton">
<div>Scroll Back</div>
</button>
<div id="myBtn2" onclick="topFunction()" title="Go to top">
<img src="up2.png" alt="" class="up_btn">
</div>
<div>
<div class="progress-bar" />
</div>
<div class="center_text">
<h1 class="before_title">Welcome to</h1>
</div>
<div class="center_text animate-charcter">
<h1 class="title_container"><span class="title_in_title">Pixelated Pathways!</span></h1>
</div>
<div class="center_text full_w">
<marquee class="wip_title">🚧 WIP</marquee>
<!-- <span class="wip_title"><b>🚧 WIP</b></span> -->
</div>
<div class="center_text">
<i>
This page is a WIP (work in progress) and is a bit disorganized and all over the place.
Bear
with me, I am
working on
this.
</i>
</div>
<br />
<div class="center_text welcome_paragraph">
<div class="welcome_paragraph_inner">Welcome to <div class="animate-charcter small_title">
"Pixelated
Pathways"!
</div> The go-to place for internet stuff.
Some links, some
guides and some <a href="https://youtu.be/sHzdsFiBbFc?si=LLJRmNoHTf27Zn0J" target="_blank">spider
webs</a>. I
like free stuff and open-source stuff, so most of what is included on this page carries
these
attributes.
</div>
</div>
<h4 class="normal_weight">Unique Links: <i>1302</i></h4>
<h4 class="normal_weight">Created by <i>Dietz</i></h4>
<h4 class="normal_weight">Message me on Discord @ <div class="tooltip">
<div onclick="copyToClipboard('myText')" class="purple" id="myText">dietz_r</div><span
class="tooltiptext" id="myTooltip">Copied!</span><span class="tooltiptext tooltiptext-hover">Click
to copy</span>
</div>
</h4>
<h4 class="normal_weight">Visit the <a href="https://rentry.org/Pixelated_Pathways" target="_blank">MIRROR</a> ~
<i>not
as
pretty as this one...</i>
</h4>
<h4 class="normal_weight">OR <a href="https://pixelated-pathways.neocities.org/" target="_blank">MIRROR
2</a> ~ <i>same
as this
one...</i></h4>
<!-- <h4 class="normal_weight">OR <a href="https://courage-1984.github.io/pixelated-pathways/" target="_blank">MIRROR 3</a> ~ <i>same as this
one...</i></h4> -->
<h4 class="normal_weight">ALSO: View my Github Repos for some useful and handy stuff: <a
href="https://github.com/Courage-1984" target="_blank">https://github.com/Courage-1984</a></h4>
</div>
<hr />
<h1 class="margin_left" id="Purpose" style="max-width: 200px;">💯 Purpose</h1>
<br />
<p class="margin_left" style="max-width: 1000px;">I would say that for me, the purpose of this page is to share
information and links and to also act as a point of
quick
reference if you need something. Everything (well most) of what is included on this page I have used and
or are
using,
so I would say that it is somewhat curated by experience.
<br /><br />
The info/links on this page is semi organized (what's included and what I want to still implement is
very broad
so this
becomes a bit difficult) but I would suggest either Use the "Table of Contents" to see and quickly
navigate to
what you
want or take some time and explore the entire page! (You never know you might end up learning something
new or
discover
something useful!)
<br /><br />
NOTE: Although this page mostly consists of unordered style lists, there had been thought and effort put
into them so
you can say they are somewhat curated, so work your way through from start > finish.
</p>
<br />
<hr />
<h2 class="top_level_container">Table of Contents</h2>
<br />
<ol class="top_level_container" id="table-of-contents">
<li><a href="#cat">🔬 Epic Knowledge Bases</a></li>
<li><a href="#link_indexes">🌐 Link Indexes</a></li>
<li><a href="#github_user_repos">🪣 Cool Github User's Repositories</a></li>
<li><a href="#lists">📚 Awesome Lists / Collections of Lists</a></li>
<li><a href="#other_rentry">📑 Other Awesome "Rentry's" <i>pages like this</i></a></li>
<li><a href="#privacy">🔒 Privacy / Anonymity / Security</a>
<ol>
<li><a href="#privacy_messengers">💬 Privacy Focused Messengers</a></li>
<li><a href="#fake_data">💳 Fake Data</a></li>
<ol>
<li><a href="#temp_mail">Temp Mail</a></li>
<li><a href="#credit_card">Credit Card Generator</a></li>
<li><a href="#profile_generator">Profile Generator</a></li>
<li><a href="#fake_misc">misc</a></li>
</ol>
</ol>
</li>
<li><a href="#osint">🕸️ OSINT</a>
<ol>
<li><a href="#analyze_IP">🌐 Find & Analyze IP Information Easily</a>
</ol>
</li>
<li><a href="#win_optimize">🪟 Windows: Ricing, Privacy, Customization & Optimization</a>
<ol>
<li><a href="#windows_guide">🪟 Windows</a>
<ol>
<li><a href="#windows_files">📁 Windows & Windows Files</a></li>
<li><a href="#command-line_shell">🖥️ command-line shell</a></li>
<li><a href="#Package_Manager">📦 Package Manager</a></li>
</ol>
</li>
<li><a href="#Quickies">🏎️ Quickies</a>
<ol>
<li><a href="Useful_Registry_Keys">🔑 Some Useful Registry Keys:</a></li>
<li><a href="#Tweaks">🪛 Tweaks</a></li>
<li><a href="#Online_Url_and_File_Analyses">🦠 Online Url and File Analyses</a></li>
</ol>
</li>
<li><a href="#Debloating_Optimisation">🧰 Debloating, Optimisation, Customisation & Privacy</a>
<ol>
<li><a href="#FIRST">🌟 FIRST:</a></li>
<li><a href="#SECOND">🌟 SECOND:</a></li>
<li><a href="#THIRD">🌟 THIRD:</a></li>
<li><a href="#Honorable_Mentions">🥈 Honorable Mentions</a></li>
</ol>
</li>
<li><a href="#Ricing_Windows">🍙 Ricing Windows</a>
<ol>
<li><a href="#My_Recommendations">💜 My Recommendations</a></li>
<li><a href="#Windows_Translucency">Windows Translucency</a></li>
<li><a href="#Cursor">Cursor</a></li>
<li><a href="#Font">Font</a></li>
<li><a href="#Wallpapers">Wallpapers</a></li>
<li><a href="#Theming">Theming</a></li>
<li><a href="#Misc">Misc</a></li>
<li><a href="#Ricing_Guides_Indexes">🌐 Ricing Guides & Indexes</a></li>
</ol>
</li>
</ol>
</li>
<li><a href="#software">⚙️ PC Software</a>
<ol>
<li><a href="#top_software">‼️ Top Picks</a></li>
<li><a href="#top_extensions">🧩 Extensions Top Picks</a></li>
<li><a href="#scripts">📜 Scripts</a></li>
<li><a href="#honorable_mentions">🥈 Honorable Mentions</a></li>
<li><a href="#software_guies">📓 Software Guides</a></li>
</ol>
</li>
<li><a href="#online_tools">🛠️ Online Tools</a>
<ol>
<li><a href="#tool_indexes">📇 Tool Indexes</a></li>
<li><a href="#online_useful">🔧 Most Useful</a></li>
<li><a href="#pdf_tools">📄 PDF Tools</a></li>
<li><a href="#password_leak">🔑 Check Password/Email Leaks</a></li>
<li><a href="#file_converters">📁 File Converters</a></li>
<li><a href="#paywall_bypass">📚 Article + Paywall Bypass</a></li>
<li><a href="#text_stuff">✏️ text / char stuff</a></li>
<li><a href="#search_engines">🔎 Search Engines</a></li>
<li><a href="#screenshot_websites">🎦 Screenshot Websites</a></li>
<li><a href="#html_to_pdf">♻️ HTML to PDF</a></li>
<li><a href="#learn_to_type">⌨️ Learn to Type</a></li>
<li><a href="#image_edit">✨ Online Image Edit / Manipulation</a>
<ol>
<li><a href="#quick_dirty">🌠 Quick & Dirty</a>
<ol>
<li><a href="#color_transfer">🟣 Image Color Transfer /
Color
Grading</a></li>
</ol>
</li>
<li><a href="#extensive_image">🖼️ Extensive Editors</a></li>
</ol>
</li>
<li><a href="#ai">🤖 AI</a></li>
</ol>
</li>
<li><a href="#digital_legacy">💾 Saving Digital Legacy</a>
<ol>
<li><a href="#lost_media">1. Rare Files | The Lost Media Wiki</a></li>
<li><a href="#start_here">2. Start Here</a></li>
<li><a href="#guides">3. Guides</a></li>
<li><a href="#adblocking_filters">4. Adblocking / Privacy / Filter Lists</a></li>
<li><a href="#subreddits">5. Subreddits</a></li>
<li><a href="#media_rippers">6. Media / Data Rippers</a></li>
<li><a href="#archives">7. Archives</a></li>
<li><a href="#torrents">8. TORRENTS</a></li>
<li><a href="#scene_meta">9. Scene Metadata Search Engine</a></li>
<li><a href="#media_sources">10. Media / Data Sources</a></li>
<li><a href="#paste_host">11. Paste & Host Services</a></li>
</ol>
</li>
<li><a href="#music">🎵 Music</a>
<ol>
<li><a href="#music_hoarders">🎶 Music Hoarders Community</a></li>
<li><a href="#tracker_interview">📀 Orpheus / RED / What-CD "Interview Prep"</a></li>
<li><a href="#trackers">Trackers</a></li>
<li><a href="#unreleased">unreleased & leaked</a></li>
<li><a href="#mixtapes">mixtapes</a></li>
<li><a href="#site_stream_rippers">site streaming rippers</a></li>
<li><a href="#ia_collections">Internet Archive Collections</a></li>
</ol>
</li>
<li><a href="#youtube">📺 YouTube</a>
<ol>
<li><a href="#yt_tools">🎞️ YouTube Tools & Metadata</a></li>
<li><a href="#yt_channels">📼 YouTube Channels</a></li>
</ol>
</li>
<li><a href="#metadata">🗃️ Metadata</a>
<ol>
<li><a href="#tv_metadata">🎬 Movie/TV Metadata</a></li>
<li><a href="#music_metadata">🎙️ Music Metadata</a></li>
</ol>
</li>
<li><a href="#dev_stuff">💻 Developer & Designer Stuff</a>
<ol>
<li><a href="#best_fucking_site">🏆 Best Fucking Site</a></li>
<li><a href="#amazing_sites">🌐 Amazing Site Designs / Dev Portfolios</a></li>
<li><a href="#vs_code">🆚 Customize VS Code</a></li>
<li><a href="#vs_code_extensions">🪣 VS Code Extensions</a></li>
<li><a href="#public_api">🚈 Public APIs</a></li>
<li><a href="#cool_stuff">😎 Cool Stuff</a></li>
<li><a href="#design_stuff">🖌️ Design Stuff</a></li>
<li><a href="#icons">🌀 Icons</a></li>
<li><a href="#Fonts">🗚 Fonts</a></li>
<li><a href="#Images">🖼️ Images</a></li>
<li><a href="#Patterns">🏁 Patterns</a></li>
<li><a href="#tool_hubs">🧰 Hubs of Tools, Resources & Sites 🔧</a></li>
</ol>
</li>
<li><a href="#interesting_stuff">🌟 Interesting Stuff</a>
<ol>
<li><a href="#interesting_sites">💡 Interesting Websites</a></li>
<li><a href="#fun_websites">😜 Fun Websites</a></li>
<li><a href="#interesting_people">🧑 Interesting People with Useful Stuff</a></li>
<li><a href="#important_reads">📖 Interesting Reads (possibly Important)</a></li>
<li><a href="#interesting_random">🌌 Interesting Miscellaneous</a></li>
</ol>
</li>
<li><a href="#subredits">🇷 Subreddits</a></li>
<li><a href="#my_guides">📓 My Guides</a>
<ol>
<li><a href="#yt-dlp">yt-dlp</a></li>
</ol>
</li>
</ol>
<hr />
<div class="top_level_container">
<h2 class="searchable-content" id="cat">🔬 Epic Knowledge Bases</h2>
<details>
<summary class="summary">View List</summary>
<h2 class="searchable-content" id="_-_sizeof(cat)_:_The"> - <a href="https://sizeof.cat/links/"
target="_blank"><u>sizeof(cat)</u></a><b> : These links are
provided as a convenience to assist you in the search for information since search
engines are
completely fucked up!</b></h2>
<h2 class="searchable-content" id="_-_My_Knowledge_Wiki"> - <a href="https://wiki.nikiv.dev/"
target="_blank"><u>My
Knowledge Wiki</u></a><b> : This is my
personal wiki where I share everything I know about this world in form of an online
wiki (NOTE: NOT MINE)</b></h2>
<h2 class="searchable-content" id="_-_Learn_Anything_:_"> - <a href="https://learn-anything.xyz/"
target="_blank"><u>Learn Anything</u></a><b> : Learn
Anything - I want to learn</b></h2>
<h2 class="searchable-content" id="_-_The_More_You_Know"> - <a href="https://marckoxx.github.io/"
target="_blank"><u>The More You Know</u></a><b> : A
list of
things that you should know, especially during this day and
age.</b></h2>
<h2 class="searchable-content" id="_-_Warren_:_Links___"> - <a href="https://github.com/torchhound/warren"
target="_blank"><u>Warren</u></a><b> : Links
to lose yourself in, curated
from HN and other sources</b></h2>
<h2 class="searchable-content" id="_-the_Curricula_:_the_Curricula_"> - <a
href="https://www.thecurricula.com/" target="_blank"><u>the Curricula</u></a><b> : the
Curricula, search for something to learn</b></h2>
<h2 class="searchable-content" id="_REASONED-ORG_"> - <a href="https://www.reasoned.org/dir/index.html"
target="_blank"><u>REASONED-ORG</u></a><b> : your gateway to wisdom on the web - A
research directory focusing on the study of philosophy, psychology, and theology.</b>
</h2>
<h2 class="searchable-content" id="_-_Research_Rabbit"> - <a href="https://www.researchrabbit.ai/"
target="_blank"><u>Research
Rabbit</u></a><b> : Reimagine Research - We’re rethinking everything: literature search, alerts,
and
more.</b>
</h2>
<h2 class="searchable-content" id="_-_Globe_Explorer_~_*_-"> - <a href="https://explorer.globe.engineer/"
target="_blank"><u>Globe Explorer</u></a><b> : Globe Explorer.</b>
</h2>
<h2 class="searchable-content" id="_-_Omniplex_"> - <a href="https://omniplex-v2.vercel.app/"
target="_blank"><u>Omniplex</u></a><b> : Omniplex - Where Knowledge Evolves</b>
</h2>
</details>
<br />
<hr />
<h2 class="searchable-content" id="link_indexes">🌐 Link Indexes</h2>
<details>
<summary class="summary">View List</summary>
<ul>
<li class="searchable-content" id="unapothecary's_termi"><a
href="https://unapothecary.neocities.org/websites" target="_blank">unapothecary's
terminal</a><i> ~ Link Directory - Welcome, Courier.</i><br /></li>
<li class="searchable-content" id="From_the_mind_of_Mic"><a href="https://mw.rat.bz/index.html"
target="_blank">From the mind of Michael Walden</a><i> ~ From the mind of Michael
Walden</i><br /></li>
</ul>
</details>
<br />
<hr />
<h2 class="searchable-content" id="github_user_repos">🪣 Cool Github User's Repositories</h2>
<details>
<summary class="summary">View List</summary>
<ul>
<li class="searchable-content" id="severityc_~_Discord_"><a
href="https://github.com/severityc?tab=repositories" target="_blank">severityc</a><i> ~ Discord
Tools</i><br /></li>
<li class="searchable-content" id="idfp_~_Bounty_hunter"><a
href="https://github.com/idfp?tab=repositories" target="_blank">idfp</a><i> ~ Bounty hunter,
Red-Team Enthusiast. Let me cook 👨🍳.</i><br /></li>
<li class="searchable-content" id="TebbaaX_~_Interestin"><a
href="https://github.com/TebbaaX?tab=repositories" target="_blank">TebbaaX</a><i> ~ Interesting
misc</i><br /></li>
<li class="searchable-content" id="RWeick_~_Engineering"><a
href="https://github.com/RWeick?tab=repositories" target="_blank">RWeick</a><i> ~ Engineering
hobbyist finding ways to intuit and preserve obsolete videogame hardware. SMD soldering
aficionado.</i><br /></li>
</ul>
</details>
<br />
<hr />
<h2 class="searchable-content" id="lists">📚 Awesome Lists / Collections of Lists</h2>
<details>
<summary class="summary">View List</summary>
<h3><b>An awesome list is a list of awesome things curated by the community.</b></h3>
<b style="color: #ff5ea6;">Here is the top-level lists of Awesome Lists:</b>
<ul>
<li class="searchable-content" id="All_Awesome_Lists_-_"><a href="https://github.com/topics/awesome"
target="_blank">All Awesome
Lists</a> -
All the Awesome lists on GitHub.<br /></li>
<li class="searchable-content" id="bookmarks_-_Public__"><a href="https://github.com/topics/bookmarks"
target="_blank">bookmarks</a>
-
Public
Repositories matching this topic
"bookmarks".<br /></li>
<li class="searchable-content" id="Main________________"><a
href="https://github.com/sindresorhus/awesome" target="_blank">Main
Repository</a> - Serves as a curated list of
awesome lists.😎Awesome lists about all kinds of interesting topics.<br /></li>
<li class="searchable-content" id="Project-Awesome_-_Cu"><a href="https://project-awesome.org/"
target="_blank">Project-Awesome</a>
- Curated
list of awesome lists.<br />
</li>
<li class="searchable-content" id="Awesome_____________"><a
href="https://github.com/bayandin/awesome-awesomeness" target="_blank">Awesome
Awesomeness</a> - A curated list
of amazingly awesome awesomeness.<br /></li>
<li class="searchable-content" id="More_Awesome_-_An___"><a href="https://github.com/0ex/more-awesome"
target="_blank">More
Awesome</a> - An
extensive list of "awesome" lists to help you find resources and starting points
on every topic.<br /></li>
<li class="searchable-content" id="Curated_Lists_______"><a
href="https://github.com/cuuupid/awesome-lists" target="_blank">Curated
Lists</a>
- [DEPRECATED] A curated list of curated lists.<br /></li>
</ul>
<br />
<b style="color: #ff5ea6;">Awesome Lists Tools:</b>
<ul>
<li class="searchable-content" id="Awesome_Search_~____"><a href="https://awesomelists.top/#/"
target="_blank">Awesome Search</a><i>
~
AwesomeSearch makes you find what you want in awesome lists more
quickly.</i><br /></li>
<li class="searchable-content" id="StumbleUponAwesome_~"><a
href="https://github.com/basharovV/StumbleUponAwesome" target="_blank">StumbleUponAwesome</a><i>
~
Discover
random pages from the Awesome dataset using a browser
extension.</i><br /></li>
<li class="searchable-content" id="Awesome_CLI_________"><a
href="https://github.com/umutphp/awesome-cli" target="_blank">Awesome
CLI</a><i>
~ A simple command line tool to
give you a fancy command line interface to dive into Awesome
lists.</i><br /></li>
<li class="searchable-content" id="Awesome_Viewer_~____"><a href="https://awesome.digitalbunker.dev/"
target="_blank">Awesome
Viewer</a><i>
~
A visualizer for all of the
above Awesome lists.</i><br /></li>
<li class="searchable-content" id="Track_Awesome_______"><a href="https://www.trackawesomelist.com/"
target="_blank">Track Awesome
List</a><i> ~ View the latest updates of
Awesome lists.</i><br /></li>
<li class="searchable-content" id="Awesome_Languages_to"><a href="https://opensource-heroes.com/awesome"
target="_blank">Awesome
Languages
to
Discover</a><i> ~ Discover the
most awesome repositories and projects of your favorite
languages.</i><br /></li>
</ul>
<b style="color: #ff5ea6;">Curated List of Curated Lists based on open source projects,
developer tools, frameworks, libraries, software, languages
and resources:</b>
<ul>
<li class="searchable-content" id="list-of-lists_~_A_me"><a
href="https://github.com/cyrusstoller/list-of-lists" target="_blank">list-of-lists</a><i> ~ A
meta
list of lists of useful
open source projects and developer tools</i><br /></li>
<li class="searchable-content" id="Awesome_____________"><a
href="https://github.com/bradoyler/awesome-all" target="_blank">Awesome
all</a><i> ~ A curated list of awesome
lists of awesome frameworks, libraries and software</i><br /></li>
<li class="searchable-content" id="Awesome_____________"><a
href="https://github.com/oyvindrobertsen/awesome-awesome" target="_blank">Awesome
awesome</a><i> ~ A curated list
of curated lists of libraries, resources and shiny things for various
languages</i><br /></li>
<li class="searchable-content" id="awesome-awesomes_~_A"><a
href="https://github.com/fleveque/awesome-awesomes" target="_blank">awesome-awesomes</a><i> ~
Awesome
collection
of awesome lists of libraries, tools, frameworks and software for any
programming language</i><br />
</li>
<li class="searchable-content" id="awesome-awesome_~_A_"><a
href="https://github.com/erichs/awesome-awesome" target="_blank">awesome-awesome</a><i> ~ A
curated
list of
awesome curated lists! Inspired by inspiration</i><br /></li>
<li class="searchable-content" id="awesome-awesome_~_Aw"><a
href="https://github.com/coopermaa/awesome-awesome" target="_blank">awesome-awesome</a><i> ~
Awesome
collection
of awesome lists</i><br /></li>
</ul>
<b style="color: #ff5ea6;">Some Awesome Lists to mention:</b>
<ul>
<li class="searchable-content" id="Track_Awesome_______"><a
href="https://www.trackawesomelist.com/#top-50-awesome-list" target="_blank">Track Awesome
List</a><i> ~ Track your Favorite Github
Awesome List Daily. We track over 500 awesome lists.</i><br /></li>
<li class="searchable-content" id="awesome-bookmarking_"><a
href="https://github.com/dogancelik/awesome-bookmarking"
target="_blank">awesome-bookmarking</a><i> ~
Everything bookmarking
related.</i><br /></li>
<li class="searchable-content" id="Awesome-DataHoarding"><a
href="https://github.com/simon987/awesome-datahoarding"
target="_blank">Awesome-DataHoarding</a><i> ~
List of
data-hoarding related tools</i><br /></li>
<li class="searchable-content" id="Awesome_Hacking_~_A_"><a
href="https://github.com/Hack-with-Github/Awesome-Hacking" target="_blank">Awesome
Hacking</a><i> ~ A
collection
of various awesome lists for hackers, pentesters and security
researchers</i><br /></li>
<li class="searchable-content" id="Awesome_____________"><a
href="https://github.com/vinta/awesome-python" target="_blank">Awesome
Python</a><i> ~ A curated list of awesome
Python frameworks, libraries, software and resources</i><br /></li>
<li class="searchable-content" id="Awesome_____________"><a
href="https://github.com/emptymalei/awesome-research" target="_blank">Awesome
Research Tools</a><i> ~ A curated
list of tools to help you with your research/life</i><br /></li>
<li class="searchable-content" id="awesome-web-effect_~"><a
href="https://github.com/lindelof/awesome-web-effect" target="_blank">awesome-web-effect</a><i>
~ A
series of exquisite and
compact web page cool effects</i><br /></li>
<li class="searchable-content" id="Awesome_____________"><a
href="https://github.com/DukeLuo/awesome-awesome-prompts" target="_blank">Awesome
Awesome Prompts</a><i> ~ An awesome list for collecting awesome lists
related to prompt engineering.</i><br /></li>
<li class="searchable-content" id="Awesome_____________"><a
href="https://github.com/fffaraz/awesome-github" target="_blank">Awesome
GitHub</a><i> ~ A curated list of awesome GitHub tools, libraries,
resources, and shiny things.</i><br /></li>
<li class="searchable-content" id="awesome-cli-apps_~_A"><a
href="https://github.com/agarrharr/awesome-cli-apps" target="_blank">awesome-cli-apps</a><i> ~ A
curated list of command line
apps</i><br /></li>
<li class="searchable-content" id="Awesome_____________"><a
href="https://github.com/alebcay/awesome-shell" target="_blank">Awesome
Shell</a><i> ~ A curated list of awesome command-line frameworks,
toolkits, guides and gizmos.</i><br /></li>
<li class="searchable-content" id="Awesome_open-source_"><a
href="https://github.com/RunaCapital/awesome-oss-alternatives" target="_blank">Awesome
open-source
alternatives to SaaS</a><i> ~
Awesome list of open-source startup alternatives to well-known SaaS
products</i><br /></li>
<li class="searchable-content" id="Subreddits__________"><a
href="https://github.com/learn-anything/reddit" target="_blank">Subreddits</a><i>
~ Awesome Reddit subreddits</i><br /></li>
<li class="searchable-content" id="Awesome_____________"><a
href="https://github.com/iCHAIT/awesome-subreddits" target="_blank">Awesome
Programming Subreddits</a><i> ~ A curated list of awesome programming
subreddits.</i><br /></li>
<li class="searchable-content" id="Aesthetic___________"><a
href="https://github.com/D3Ext/aesthetic-wallpapers" target="_blank">Aesthetic
Wallpapers</a><i> ~ An awesome collection of aesthetic
wallpapers</i><br /></li>
<li class="searchable-content" id="_"><a apps=""
href="https://github.com/aviaryan/awesome-no-login-web-apps" i="" login<="" that="" without=""
work=""><br />
</a></li>
<li class="searchable-content" id="_~_"><a href="" target="_blank"></a><i> ~ </i><br />
</li>
</ul>
<b style="color: #00ced1;">Now onto other Collections of Lists:</b>
<ul>
<li class="searchable-content" id="Lists_~_The_definiti"><a href="https://github.com/jnv/lists"
target="_blank">Lists</a><i> ~ The
definitive
list of
lists (of lists)
curated on GitHub and elsewhere.</i><br /></li>
<li class="searchable-content" id="List_of_____________"><a
href="https://github.com/asciimoo/ListOfGithubLists" target="_blank">List of
github lists</a><i> ~ List of github
lists</i><br /></li>
<li class="searchable-content" id="BOOKMRKS-MTHRFCKR_~_"><a
href="https://github.com/whoisdsmith/BOOKMRKS-MTHRFCKR" target="_blank">BOOKMRKS-MTHRFCKR</a><i>
~
The Internet's
Biggest and Best Collection of Bookmarks, Resources, Hidden Gems and
Everything
Else,
MTHRFCKR!</i><br /></li>
<li class="searchable-content" id="BOOKMRKS-MTHRFCKR-II"><a
href="https://github.com/whoisdsmith/BOOKMRKS-MTHRFCKR-II"
target="_blank">BOOKMRKS-MTHRFCKR-II</a><i> ~ An
even
bigger, better collection, MTHRFCKR!</i><br /></li>
<li class="searchable-content" id="Web_Links_|_num's___"><a
href="https://soda.privatevoid.net/num/links/" target="_blank">Web Links
| num's
soda
page</a><i> ~ The links are
of various topics.</i><br /></li>
<li class="searchable-content" id="Main_tools_database_"><a
href="https://www.reddit.com/r/Stumbledon/comments/v8mh5y/main_tools_directory_personally_curated_database/"
target="_blank">Main tools database</a><i> ~ Main tools directory -
(personally curated) database
containing around 4,000 links</i><br /></li>
<li class="searchable-content" id="Amazing_____________"><a
href="https://eksisozluk.com/az-kisinin-bildigi-muhtesem-web-siteleri--2764697?a=nice"
target="_blank">Amazing
websites that few people know about</a><i> ~ Amazing websites that few
people know about</i><br /></li>
<li class="searchable-content" id="whoisdsmith_~_16____"><a href="https://raindrop.io/whoisdsmith"
target="_blank">whoisdsmith</a><i> ~ 16
public raindrop-io
collections</i><br /></li>
<li class="searchable-content" id="Directories_~_50____"><a
href="https://raindrop.io/esports/directories-8708249" target="_blank">Directories</a><i> ~ 50
bookmarks of
curated lists of all kinds of stuff</i><br /></li>
<li class="searchable-content" id="href-cool_~_List_of_"><a href="https://href.cool/"
target="_blank">href-cool</a><i> ~ List of Old / Weird
Sites.</i><br /></li>
<li class="searchable-content" id="The_101_____________"><a
href="https://www.labnol.org/internet/101-useful-websites/18078/" target="_blank">The 101
Most Useful Websites on
the Internet</a><i> ~ The most useful websites on the Internet that will
make
you smarter, increase
productivity and help you learn new skills.</i><br /></li>
<li class="searchable-content" id="Which_websites_do_yo"><a
href="https://www.reddit.com/r/AskReddit/comments/1hb8qo/which_websites_do_you_usually_visit_when_you_are/"
target="_blank">Which websites do you usually visit when you are bored
of
reddit?</a><i> ~ Which
websites do you go to when you are bored of surfing reddit?</i><br />
</li>
<li class="searchable-content" id="Bigwax's_Website____"><a
href="https://pastehtml.com/view/b814w8vvv.html" target="_blank">Bigwax's
Website
Compilation</a><i> ~ Curated
and categorized list made by redditor u/bigwax, so all credit goes to
him!</i><br /></li>
<li class="searchable-content" id="LOL_(lots_of_links)_"><a
href="https://annierau.com/LOL-lots-of-links" target="_blank">LOL (lots of links)</a><i> ~ Stuff
I like - inconclusive, unorganized, maybe awe-inspiring,
maybe not</i><br /></li>
<li class="searchable-content" id="_~_"><a href="" target="_blank"></a><i> ~ </i><br />
</li>
</ul>
<b style="color: #00ced1;">Public Pages Exploration:</b>
<ul>
<li class="searchable-content" id="Google_Search_-_Obsi"><a
href="https://www.google.com/search?hl=tr&as_q=&as_epq=&as_oq=&as_eq=&as_nlo=&as_nhi=&lr=&cr=&as_qdr=all&as_sitesearch=https%3A%2F%2Fpublish.obsidian.md%2F&as_occt=url&as_filetype=&tbs="
target="_blank">Google Search - Obsidian Publish</a><br /></li>
<li class="searchable-content" id="Google_Search_-_Rain"><a
href="https://www.google.com/search?hl=tr&as_q=&as_epq=&as_oq=&as_eq=&as_nlo=&as_nhi=&lr=&cr=&as_qdr=all&as_sitesearch=https%3A%2F%2Fraindrop.io%2F&as_occt=url&as_filetype=&tbs="
target="_blank">Google Search - Raindrop.io</a><br /></li>
<li class="searchable-content" id="Google_Search_-_Star"><a
href="https://www.google.com/search?hl=tr&as_q=&as_epq=&as_oq=&as_eq=&as_nlo=&as_nhi=&lr=&cr=&as_qdr=all&as_sitesearch=https%3A%2F%2Fstart.me%2Fp%2F&as_occt=url&as_filetype=&tbs="
target="_blank">Google Search - Start.me</a><br /></li>
<li class="searchable-content" id="Google_Search_-_Noti"><a
href="https://www.google.com/search?hl=tr&as_q=&as_epq=&as_oq=&as_eq=&as_nlo=&as_nhi=&lr=&cr=&as_qdr=all&as_sitesearch=notion.so%2F&as_occt=url&as_filetype=&tbs="
target="_blank">Google Search - Notion.so</a><br /></li>
<li class="searchable-content" id="Google_Search_-_Wake"><a
href="https://www.google.com/search?hl=tr&as_q=&as_epq=&as_oq=&as_eq=&as_nlo=&as_nhi=&lr=&cr=&as_qdr=all&as_sitesearch=https%3A%2F%2Fwakelet.com%2Fwake%2F&as_occt=url&as_filetype=&tbs="
target="_blank">Google Search - Wakelet</a><br /></li>
<li class="searchable-content" id="_~_"><a href="" target="_blank"></a><i> ~ </i><br />
</li>
</ul>
</details>
<br />
<hr />
<section>
<h2 class="searchable-content" id="other_rentry">📑 Other Awesome "Rentry's" <i>pages like
this</i></h2>
<h3>If "Rentry" doesn't load, access the backup by changing the ".co" to ".org"
in the link. (or
other way
around).</h3>
<details>
<summary class="summary">View List</summary>
<table>
<tr class="searchable-content" id="_Rentry_URL_">
<th>Rentry</th>
<th>URL</th>
</tr>
<tr class="searchable-content" id="_Haunt's_Site_List_h">
<td>Haunt's Site List</td>
<td><a href="https://rentry.co/u234qq" target="_blank">https://rentry.co/u234qq</a>
</td>
</tr>
<tr class="searchable-content" id="_Cool_Websites_https">
<td>Cool Websites</td>
<td><a href="https://rentry.co/cool_websites"
target="_blank">https://rentry.co/cool_websites</a>
</td>
</tr>
<tr class="searchable-content" id="_FMHY_Guides_https:/">
<td>FMHY Guides</td>
<td><a href="https://rentry.co/fmhy-guides" target="_blank">https://rentry.co/fmhy-guides</a>
</td>
</tr>
<tr class="searchable-content" id="_Firehawk52_Guide_-_">
<td>Firehawk52 Guide - Saving Digital Legacy</td>
<td><a href="https://rentry.co/firehawk52" target="_blank">https://rentry.co/firehawk52</a>
</td>
</tr>
<tr class="searchable-content" id="_The_Piracy_Glossary">
<td>The Piracy Glossary</td>
<td><a href="https://rentry.org/The-Piracy-Glossary"
target="_blank">https://rentry.org/The-Piracy-Glossary</a>
</td>
</tr>
<tr class="searchable-content" id="_Beginners_Guide_to_">
<td>Beginners Guide to Piracy</td>
<td><a href="https://rentry.org/Piracy-BG" target="_blank">https://rentry.org/Piracy-BG</a>
</td>
</tr>
<tr class="searchable-content" id="_📜_➜_Megathread_http">
<td>📜 ➜ Megathread</td>
<td><a href="https://rentry.co/megathread" target="_blank">https://rentry.co/megathread</a>
</td>
</tr>
<tr class="searchable-content" id="_CHAMPAGNE_PIRACY_WI">
<td>CHAMPAGNE PIRACY WIKI</td>
<td><a href="https://rentry.org/champagne_wiki"
target="_blank">https://rentry.org/champagne_wiki</a>
</td>
</tr>
<tr class="searchable-content" id="_Pirated_Games_Mega_">
<td>Pirated Games Mega Thread</td>
<td><a href="https://rentry.org/pgames" target="_blank">https://rentry.org/pgames</a>
</td>
</tr>
<tr class="searchable-content" id="_Divolt.xyz_Discover">
<td>Divolt.xyz Discover</td>
<td><a href="https://rentry.org/divolt" target="_blank">https://rentry.org/divolt</a>
</td>
</tr>
<tr class="searchable-content" id="_Slav_Art_Beginner_I">
<td>Slav Art Beginner Information</td>
<td><a href="https://rentry.org/slavart" target="_blank">https://rentry.org/slavart</a>
</td>
</tr>
<tr class="searchable-content" id="_Friendly_Windows_Th">
<td>Friendly Windows Thread Paste</td>
<td><a href="https://rentry.co/fwt" target="_blank">https://rentry.co/fwt</a>
</td>
</tr>
<tr class="searchable-content" id="_Download_Windows_In">
<td>Download Windows Install Media</td>
<td><a href="https://rentry.co/fwtdwnl" target="_blank">https://rentry.co/fwtdwnl</a></td>
</tr>
<tr class="searchable-content" id="_Installing_Windows_">
<td>Installing Windows for Retards</td>
<td><a href="https://rentry.co/windows_for_retards"
target="_blank">https://rentry.co/windows_for_retards</a>
</td>
</tr>
<tr class="searchable-content" id="_Optimize-Offline:_G">
<td>Optimize-Offline: Guide - Windows Debloating Tool</td>
<td><a href="https://rentry.co/mdl-optimize-guide"
target="_blank">https://rentry.co/mdl-optimize-guide</a>
</td>
</tr>
<tr class="searchable-content" id="_Offline_Imaging_&_O">
<td>Offline Imaging & Optimization Guide</td>
<td><a href="https://rentry.co/ltsc_optimize"
target="_blank">https://rentry.co/ltsc_optimize</a>
</td>
</tr>
<tr class="searchable-content" id="_Lyssa's_weird_rentr">
<td>Lyssa's weird rentry</td>
<td><a href="https://rentry.co/thecatonthefloor"
target="_blank">https://rentry.co/thecatonthefloor</a>
</td>
</tr>
<tr class="searchable-content" id="_windowsbumhole_http">
<td>windowsbumhole</td>
<td><a href="https://rentry.co/windowsbumhole"
target="_blank">https://rentry.co/windowsbumhole</a>
</td>
</tr>
<tr class="searchable-content" id="_VirusTotal_Scan">
<td>VirusTotal Scan Guide</td>
<td><a href="https://rentry.co/VTGuide" target="_blank">https://rentry.co/VTGuide</a>
</td>
</tr>
<tr class="searchable-content" id="_VirusTotal_Scan">
<td>FMHY Base64</td>
<td><a href="https://rentry.co/FMHYBase64" target="_blank">https://rentry.co/FMHYBase64</a>
</td>
</tr>
<tr class="searchable-content" id="___">
<td></td>
<td><a href="" target="_blank"></a></td>
</tr>
</table>
</details>
</section>
<br />
<hr />
<h2 class="searchable-content" id="privacy">🔒 Privacy / Anonymity / Security</h2>
<h3><i>it is paramount!</i></h3>
<details>
<summary class="summary">View List</summary>
<ul>
<li class="searchable-content" id="Privacy_Guides_~____"><a href="https://www.privacyguides.org/en/"
target="_blank">Privacy
Guides</a><i> ~
Your Independent
Privacy and
Security Resource. The guide to restoring your online
privacy.</i><br />
</li>
<li class="searchable-content" id="Privacy_Tools_~_____"><a href="https://www.privacytools.io/"
target="_blank">Privacy Tools</a><i>
~
Privacy Tools: Fight
Mass Surveillance
with Encryption - Best Privacy Tools & Software
Guide</i><br /></li>
<li class="searchable-content" id="Cover_Your_Tracks___"><a href="https://coveryourtracks.eff.org/"
target="_blank">Cover Your
Tracks</a><i>
~ See how trackers view your browser</i><br /></li>
<li class="searchable-content" id="Awesome_____________"><a
href="https://github.com/TemporalAgent7/awesome-windows-privacy" target="_blank">Awesome
Windows privacy</a><i> ~ A list of awesome tools,
documentation and scripts for better privacy on
Microsoft Windows</i><br /></li>
<li class="searchable-content" id="r/privacy_~_Privacy_"><a
href="https://www.reddit.com/r/privacy/wiki/index/" target="_blank">r/privacy</a><i> ~ Privacy
&
Freedom in the Information
Age</i><br /></li>
<li class="searchable-content" id="PRISM_Break_~_Opt_ou"><a href="https://prism-break.org/en/"
target="_blank">PRISM Break</a><i> ~
Opt out
of global data surveillance programs like PRISM, XKeyscore, and
Tempora</i><br /></li>
<li class="searchable-content" id="Mine_~_The_Future_of"><a href="https://www.saymine.com/"
target="_blank">Mine</a><i>
~ The Future of Data Ownership - Mine allows you to discover where your
personal data is, and reduce
your online exposure to minimize digital risks.</i><br /></li>
<li class="searchable-content" id="Just_Delete_Me_~_A__"><a href="https://justdeleteme.xyz/"
target="_blank">Just Delete Me</a><i> ~
A
directory of direct links to delete your account from web
services.</i><br /></li>
<li class="searchable-content" id="Just_Get_My_Data_~_A"><a href="https://justgetmydata.com/"
target="_blank">Just Get My
Data</a><i> ~ A
directory of direct links for you to obtain your data from web
services.</i><br /></li>
<li class="searchable-content" id="deletefacebook_~____"><a href="https://deletefacebook.com/guide/"
target="_blank">deletefacebook</a><i> ~
Delete Facebook Guide.</i><br /></li>
<li class="searchable-content" id="Proton_~_A_better_in"><a href="https://proton.me/"
target="_blank">Proton</a><i> ~ A
better internet starts with privacy and freedom - Take control of your
data with end-to-end
encryption.</i><br /></li>
<li class="searchable-content" id="Tor_Project_~_Defend"><a href="https://www.torproject.org/"
target="_blank">Tor Project</a><i> ~
Defend
yourself against tracking and surveillance. Circumvent
censorship.</i><br /></li>
<li class="searchable-content" id="DEDA_~_DEDA_-_______"><a href="https://github.com/dfd-tud/deda"
target="_blank">DEDA</a><i> ~
DEDA -
tracking Dots
Extraction, Decoding and
Anonymisation toolkit.</i><br /></li>
<li class="searchable-content" id="r/antivirus_~_For_al"><a
href="https://www.reddit.com/r/antivirus/wiki/index/" target="_blank">r/antivirus</a><i> ~ For
all of your Antivirus
Needs.</i><br /></li>
<li class="searchable-content" id="Official_Malware_Rem"><a
href="https://www.reddit.com/r/techsupport/comments/33evdi/suggested_reading_official_malware_removal_guide/"
target="_blank">Official Malware Removal Guide</a><i> ~ [SUGGESTED
READING] Official Malware Removal Guide</i><br /></li>
<li class="searchable-content" id="Alternative_________"><a
href="https://github.com/redecentralize/alternative-internet" target="_blank">Alternative
Internet</a><i> ~ A collection of
interesting new networks and tech aiming at decentralisation (in some
form).</i><br /></li>
<li class="searchable-content" id="Let's_Block_It!_~_Re"><a href="https://letsblock.it/"
target="_blank">Let's
Block It!</a><i> ~ Remove
low-quality content and useless nags, focus on what matters. Make the
web yours again with this collection of
community-owned content filters.</i><br /></li>
<li class="searchable-content" id="Redact_~_Mass_Delete"><a href="https://redact.dev/"
target="_blank">Redact</a><i> ~ Mass Delete Messages, Posts, Likes and More from 40+
Services</i><br /></li>
<li class="searchable-content" id="_~_"><a href="" target="_blank"></a><i> ~ </i><br />
</li>
</ul>
</details>
<details>
<summary class="summary" id="privacy_messengers">💬 Privacy Focused Messengers</summary>
<ul>
<li class="searchable-content" id="Signal_~_An_unexpect"><a href="https://signal.org/"
target="_blank">Signal</a><i> ~ An unexpected focus on
privacy, combined with all of the features you expect.</i><br /></li>
<li class="searchable-content" id="Element_~_A_secure__"><a href="https://element.io/"
target="_blank">Element</a><i> ~ A secure
communications platform built around you.</i><br /></li>
<li class="searchable-content" id="Jami_~_Jami_is_a_fre"><a href="https://jami.net/"
target="_blank">Jami</a><i>
~ Jami is a free/libre,
end-to-end encrypted, and private communication software.</i><br /></li>
<li class="searchable-content" id="Briar_~_____________"><a href="https://briarproject.org/"
target="_blank">Briar</a><i> ~
Censorship-resistant peer-to-peer messaging that bypasses centralized
servers.</i><br /></li>
</ul>
</details>
<h2 class="searchable-content" id="fake_data">💳 Fake Data</h2>
<h3>Temp / Fake data to use. Could be useful for Dev purposes, Online
Obfuscation, and Activity
/ Profile /
Identity
Segregation.</h3>
<details>
<summary class="summary" id="temp_mail">Temp Mail</summary>
<ul>
<li class="searchable-content" id="Temp_Mail_~_________"><a href="https://temp-mail.org/en/"
target="_blank">Temp Mail</a><i> ~
Disposable Temporary
Email</i><br /></li>
<li class="searchable-content" id="Guerrilla___________"><a href="https://www.guerrillamail.com/"
target="_blank">Guerrilla
Mail</a><i> ~ Disposable
Temporary E-Mail
Address</i><br /></li>
<li class="searchable-content" id="10_Minute_Mail_~____"><a href="https://10minemail.com/"
target="_blank">10
Minute Mail</a><i> ~
Your 10 Minute
Mail address</i><br /></li>
<li class="searchable-content" id="Tempmailo_~_________"><a href="https://tempmailo.com/"
target="_blank">Tempmailo</a><i> ~
Temporary Disposable
Email Address</i><br /></li>
<li class="searchable-content" id="tempail_~_Temporary_"><a href="https://tempail.com/en/"
target="_blank">tempail</a><i> ~
Temporary
Email</i><br />
</li>
<li class="searchable-content" id="smailpro_~_Temp_____"><a href="https://smailpro.com/advanced"
target="_blank">smailpro</a><i> ~
Temp
mail</i><br /></li>
<li class="searchable-content" id="10minutesemail_~_10_"><a href="https://10minutesemail.net/"