-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprograms.html
More file actions
2832 lines (2417 loc) · 115 KB
/
Copy pathprograms.html
File metadata and controls
2832 lines (2417 loc) · 115 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
<html>
<head>
<script type="text/javascript" src="javascript\jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="javascript\jquery.tablesorter.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Ultimate Computer Wiki </title>
<link rel="stylesheet" href="css/style.css"
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h2><span class="highlight">Ultimate</span> Computer Wiki</h2>
</div>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="emulation.html">Emulation</a></li>
<li><a href="games.html">Games</a></li>
<li><a href="learn.html">Learning</a></li>
<li class="current"><a href="programs.html">Programs</a></li>
<li><a href="websites.html">Websites</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class = container>
</div>
</section>
<center>
<style>
a { color: #666666;
text-decoration: none;}
</style>
<input type="text" id="search" onkeyup="searchFunction('search', 0)" placeholder="Search by Name">
<input type="text" id="searchDescription" onkeyup="searchFunction('searchDescription', 1)" placeholder="Search by Keyword">
<select name="genres" id="genres" onchange="searchFunction('genres', 3)">
<option value="">All</option>
<option value="Audio">Audio</option>
<option value="Development">Development</option>
<option value="File">File</option>
<option value="Gaming">Gaming</option>
<option value="Hardware">Hardware</option>
<option value="Image">Image</option>
<option value="Input">Input</option>
<option value="Install">Install</option>
<option value="Internet">Internet</option>
<option value="Media">Media</option>
<option value="Modeling">Modeling</option>
<option value="Music">Music</option>
<option value="Networking">Networking</option>
<option value="Office">Office</option>
<option value="OS">OS</option>
<option value="Personalization">Personalization</option>
<option value="Productivity">Productivity</option>
<option value="Screenshot">Screenshot</option>
<option value="Security">Security</option>
<option value="Social">Social</option>
<option value="System Tools">System Tools</option>
<option value="Video">Video</option>
</select>
<table id="List" class="tablesorter">
<thead>
<tr class="header">
<th>Name</th>
<th>Description</th>
<th>Download</th>
<th>Genre</th>
</tr>
</thead>
<tbody>
<tr>
<td>3DMark</td>
<td>3DMark includes everything you need to benchmark your PC, tablet and smartphone.</td>
<td><a href="https://benchmarks.ul.com/3dmark?">Download</a></td>
<td>Hardware</td>
</tr>
<tr>
<td>7+ Taskbar Tweaker</td>
<td>7+ Taskbar Tweaker allows you to configure various aspects of the Windows taskbar.</td>
<td><a href="http://rammichael.com/7-taskbar-tweaker">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>7-Zip</td>
<td>A utility used to place groups of files within compressed containers known as "archives".</td>
<td><a href="https://www.7-zip.org/">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>AutoHotKey</td>
<td>AutoHotkey is a free, open-source custom scripting language for Microsoft Windows, initially aimed at providing easy keyboard shortcuts or hotkeys, fast macro-creation and software automation that allows users of most levels of computer skill to automate repetitive tasks in any Windows application.</td>
<td><a href="https://autohotkey.com/">Download</a></td>
<td>Productivity</td>
</tr>
<tr>
<td>AIMP</td>
<td>AIMP is a freeware audio player for Windows and Android, originally developed by Russian developer Artem Izmaylov.</td>
<td><a href="http://www.aimp.ru/">Download</a></td>
<td>Music</td>
</tr>
<tr>
<td>AOMEI Partition Assistant</td>
<td>AOMEI Partition Assistant Standard is the right one for your PC, guaranteeing you get the full features for creating, resizing, deleting, merging, splitting partition and more.</td>
<td><a href="https://www.disk-partition.com/free-partition-manager.html">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>AdwCleaner</td>
<td>The world’s most popular adware cleaner finds and removes unwanted programs and junkware
so your online experience stays optimal and hassle-free.</td>
<td><a href="https://www.malwarebytes.com/adwcleaner/">Download</a></td>
<td>Security</td>
</tr>
<tr>
<td>Aegisub</td>
<td>Aegisub is a free open-source cross-platform subtitle editing program. It is extensively used in fansubbing, the practice of creating or translating unofficial, noncommercial subtitles for visual media by fans.</td>
<td><a href="https://github.com/Aegisub/Aegisub">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>Agent Ransack</td>
<td>Agent Ransack is a free software program for finding files on your PC or network drives.</td>
<td><a href="https://www.mythicsoft.com/agentransack/">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>AndreaMosaic</td>
<td>AndreaMosaic is a freeware graphic art software developed and published by Andrea Denzler and that specializes in the creation of photographic mosaic images.</td>
<td><a href="http://www.andreaplanet.com/andreamosaic/">Download</a></td>
<td>Image Generation</td>
</tr>
<tr>
<td>Android Studio</td>
<td>Android Studio is the official integrated development environment for Google's Android operating system, built on JetBrains' IntelliJ IDEA software and designed specifically for Android development.</td>
<td><a href="https://developer.android.com/studio/">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>Ant Renamer</td>
<td>Ant Renamer is a program that makes easier to rename of files and folders by using specified settings.</td>
<td><a href="http://antp.be/software/renamer">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>Anti-Twin</td>
<td>Anti-Twin is a small software application which compares files, i.e. it searches for duplicate or similar files on your hard disk drive.</td>
<td><a href="http://www.joerg-rosenthal.com/en/antitwin/">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>Apophysis 7x</td>
<td>A version of the fractal flame editor Apophysis which is ready to take advantage of modern versions of Microsoft Windows, provides a big set of new features and has a polished user interface.</td>
<td><a href="https://sourceforge.net/projects/apophysis7x/">Download</a></td>
<td>Image Generation</td>
</tr>
<tr>
<td>A's Video Converter</td>
<td>This program is a video converter using AMD, Intel, NVIDIA and Microsoft Encoder.</td>
<td><a href="https://bluesky-soft.com/en/AsVideoConv.html">Download</a></td>
<td>Video Tools</td>
</tr>
<tr>
<td>Atom</td>
<td>Atom is a free and open-source text and source code editor for macOS, Linux, and Microsoft Windows with support for plug-ins written in Node.js, and embedded Git Control, developed by GitHub.</td>
<td><a href="https://atom.io/">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>Audacity</td>
<td>Audacity is a free open source digital audio editor and recording computer software application.</td>
<td><a href="https://www.audacityteam.org/">Download</a></td>
<td>Audio</td>
</tr>
<tr>
<td>Audio Router</td>
<td>Per-application volume control.</td>
<td><a href="https://github.com/audiorouterdev/audio-router/releases">Download</a></td>
<td>Audio</td>
</tr>
<tr>
<td>AudioNodes</td>
<td>Create music and audio effects with AudioNodes, a free, modular music and audio production suite, with multi-track audio mixing, audio effects, parameter automation, MIDI editing, synthesis, and more.</td>
<td><a href="https://audionodes.com/">Download</a></td>
<td>Music</td>
</tr>
<tr>
<td>Audio Switcher</td>
<td>Audio Switcher is a free application for Windows Vista / 7 / 8 that helps you to change or switch default audio devices.</td>
<td><a href="https://audioswit.ch/er">Download</a></td>
<td>Audio</td>
</tr>
<tr>
<td>Authy</td>
<td>Two-factor authentication (2FA) adds an additional layer of protection beyond passwords. </td>
<td><a href="https://authy.com/">Download</a></td>
<td>Security</td>
</tr>
<tr>
<td>AutoRuns</td>
<td>This utility, which has the most comprehensive knowledge of auto-starting locations of any startup monitor, shows you what programs are configured to run during system bootup or login, and when you start various built-in Windows applications like Internet Explorer, Explorer and media players.</td>
<td><a href="https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>Avast Antivirus</td>
<td>Protect your devices with the best free antivirus on the market.</td>
<td><a href="https://www.avast.com/en-ca/index">Download</a></td>
<td>Security</td>
</tr>
<tr>
<td>Avidemux</td>
<td>Avidemux is a free and open-source video editing program designed for video editing and video processing. It is written in C++, and uses either GTK+ or Qt for its user interface.</td>
<td><a href="http://avidemux.sourceforge.net/">Download</a></td>
<td>Video Editing</td>
</tr>
<tr>
<td>BabelMap</td>
<td>BabelMap is a free character map application for Windows that allows you to browse through the entire Unicode character repertoire of nearly 137,000 characters, or search for a particular character by name or by code point.</td>
<td><a href="http://www.babelstone.co.uk/Software/BabelMap.html">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>Babun</td>
<td>A Windows shell you will love!</td>
<td><a href="http://babun.github.io/">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>Balabolka</td>
<td>Balabolka is a Text-To-Speech (TTS) program.</td>
<td><a href="http://www.cross-plus-a.com/balabolka.htm">Download</a></td>
<td>Audio</td>
</tr>
<tr>
<td>Bandizip</td>
<td>Bandizip is an all-in-one Zip Archiver.</td>
<td><a href="https://www.bandisoft.com/bandizip/">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>Balsamiq</td>
<td>Unleash Your Creativity! Balsamiq is a rapid wireframing tool that helps you Work Faster & Smarter. It reproduces the experience of sketching on a whiteboard, but using a computer.</td>
<td><a href="https://balsamiq.com/">Download</a></td>
<td>Office</td>
</tr>
<tr>
<td>Beyond Compare</td>
<td>Beyond Compare is a data comparison utility. Aside from comparing files, the program is capable of doing side-by-side comparison of directories, FTP and SFTP directories, Dropbox directories, Amazon S3 directories, and archives.</td>
<td><a href="https://www.scootersoftware.com/">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>Bitdefender</td>
<td>Whether you need protection for a single device, smart home, small business or Enterprise datacenter, Bitdefender delivers the best security and performance.</td>
<td><a href="https://www.bitdefender.com/">Download</a></td>
<td>Security</td>
</tr>
<tr>
<td>Blender</td>
<td>Blender is a professional, free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, interactive 3D applications and video games.</td>
<td><a href="https://www.blender.org/">Download</a></td>
<td>Modeling</td>
</tr>
<tr>
<td>Blizzard Launcher</td>
<td>Your Blizzard games are easily accessible so you can quickly jump in and start playing. When you're not playing, the app automatically updates each game to the latest version. Discover new adventures. Curious about a game you don't have installed? Give it a try right from its game tab. Most Blizzard games are free to try!</td>
<td><a href="https://www.blizzard.com/en-us/apps/battle.net/desktop">Download</a></td>
<td>Gaming Platform</td>
</tr>
<tr>
<td>Borderless Gaming</td>
<td>Play your favorite games in a borderless window; no more time consuming alt-tabs.</td>
<td><a href="https://github.com/Codeusa/Borderless-Gaming">Download</a></td>
<td>Gaming Tools</td>
</tr>
<tr>
<td>Bosca Ceoil</td>
<td>A simple music making program.</td>
<td><a href="https://boscaceoil.net/">Download</a></td>
<td>Music</td>
</tr>
<tr>
<td>Boss Detector</td>
<td>Boss Detector is a motion detector for your computer or mobile device. When it detects motion it will hide non-work windows and bring work to the foreground, making you always appear to be the model employee.</td>
<td><a href="https://bossdetector.com/">Download</a></td>
<td>Productivity</td>
</tr>
<tr>
<td>Brackets</td>
<td>Brackets is an open-source editor written in HTML, CSS, and JavaScript with a primary focus on web development. It was created by Adobe Systems, licensed under the MIT License, and is currently maintained on GitHub.</td>
<td><a href="http://brackets.io/">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>Brave</td>
<td>Brave is a free and open-source web browser based on the Chromium web browser and its Blink engine, announced by the co-founder of the Mozilla project and creator of JavaScript, Brendan Eich.</td>
<td><a href="https://brave.com/">Download</a></td>
<td>Internet</td>
</tr>
<tr>
<td>Bulk Rename Utility</td>
<td>Bulk Rename Utility allows you to easily rename files and entire folders based upon extremely flexible criteria.</td>
<td><a href="http://www.bulkrenameutility.co.uk/Main_Intro.php">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>CCleaner</td>
<td>CCleaner is a utility program used to clean potentially unwanted files and invalid Windows Registry entries from a computer.</td>
<td><a href="https://www.ccleaner.com/">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>CDBurnerXP</td>
<td>Free CD, DVD, ISO, HD-DVD and Blu-Ray burning software with multi-language interface.</td>
<td><a href="https://cdburnerxp.se/en/home">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>CDex</td>
<td>CDex is a free software for Digital Audio Extraction from Audio CD and audio format conversion for Microsoft Windows. It converts CDDA tracks from a CD to standard computer sound files, such as WAV, MP3, or Ogg Vorbis.</td>
<td><a href="https://cdex.mu/">Download</a></td>
<td>Audio</td>
</tr>
<tr>
<td>CPU-Z</td>
<td>CPU-Z is a freeware system profiling and monitoring application for Microsoft Windows and Android that detects the central processing unit, RAM, motherboard chipset, and other hardware features of a modern personal computer or Android device.</td>
<td><a href="https://www.cpuid.com/softwares/cpu-z.html">Download</a></td>
<td>Hardware</td>
</tr>
<tr>
<td>CRU</td>
<td>Custom Resolution Utility (CRU) allows custom resolutions to be defined for both AMD/ATI and NVIDIA GPUs by creating EDID overrides directly in the registry without dealing with .inf files.</td>
<td><a href="https://www.monitortests.com/forum/Thread-Custom-Resolution-Utility-CRU">Download</a></td>
<td>Hardware</td>
</tr>
<tr>
<td>Caesium</td>
<td>Compress your pictures up to 90% without visible quality loss.</td>
<td><a href="https://saerasoft.com/caesium/">Download</a></td>
<td>Image Compression</td>
</tr>
<tr>
<td>Calibre</td>
<td>Calibre is a cross-platform open-source suite of e-book software. Calibre supports organizing existing e-books into virtual libraries, displaying, editing, creating and conversion of e-books, as well as syncing e-books with a variety of e-readers.</td>
<td><a href="https://calibre-ebook.com/">Download</a></td>
<td>Office</td>
</tr>
<tr>
<td>Carnac</td>
<td>A keyboard logging and presentation utility for presentations, screencasts, and to help you become a better keyboard user.</td>
<td><a href="http://code52.org/carnac/">Download</a></td>
<td>Office</td>
</tr>
<tr>
<td>Chocolatey</td>
<td>The package manager for Windows</td>
<td><a href="https://chocolatey.org/">Download</a></td>
<td>Install</td>
</tr>
<tr>
<td>Classic Shell</td>
<td>Classic Shell is a computer software for Microsoft Windows that provides user interface elements intended to restore familiar features from past versions of Windows.</td>
<td><a href="http://www.classicshell.net/">Download</a></td>
<td>Personalization</td>
</tr>
<tr>
<td>Clementine Music Player</td>
<td>Clementine is a free and open-source audio player. It is a port of Amarok 1.4 to the Qt 4 framework and the GStreamer multimedia framework. It is available for Unix-like, Windows and macOS.</td>
<td><a href="https://www.clementine-player.org/">Download</a></td>
<td>Music</td>
</tr>
<tr>
<td>Clicky Gone</td>
<td>Clicky Gone allows you to hide your selected windows from view, this includes the taskbar button associated with the application. This utility particularly helps with protecting your privacy by hiding things like your browser with banking details up and someone walks in on you.</td>
<td><a href="http://clickygone.sourceforge.net/">Download</a></td>
<td>Productivity</td>
</tr>
<tr>
<td>ClipX</td>
<td>ClipX is a tiny clipboard history manager for Windows.</td>
<td><a href="https://bluemars.org/clipx/">Download</a></td>
<td>Productivity</td>
</tr>
<tr>
<td>Clover 3</td>
<td>Clover Brings Chrome-Style Tabs to Windows Explorer.</td>
<td><a href="http://en.ejie.me/">Download</a></td>
<td>Personalization</td>
</tr>
<tr>
<td>cmder</td>
<td>cmder is software package that provides great console experience even on Windows.</td>
<td><a href="http://cmder.net/">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>Cold Turkey Blocker</td>
<td>Cold Turkey Blocker is a free productivity program that you can use to temporarily block distractions so that you can get your work done!</td>
<td><a href="https://getcoldturkey.com/">Download</a></td>
<td>Productivity</td>
</tr>
<tr>
<td>Colour Contrast Analyser</td>
<td>The Colour Contrast Analyser (CCA) helps you determine the legibility of text and the contrast of visual elements, such as graphical controls and visual indicators.</td>
<td><a href="https://developer.paciellogroup.com/resources/contrastanalyser/">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>CommandTrayHost</td>
<td>A command line program monitor systray for Windows.</td>
<td><a href="https://github.com/rexdf/CommandTrayHost">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>CompactGUI</td>
<td>CompactGUI is a standalone user interface that makes the Windows 10 compact.exe function easier to use.</td>
<td><a href="https://github.com/ImminentFate/CompactGUI">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>ConEmu</td>
<td>ConEmu is a free and open-source tabbed terminal emulator for Windows. ConEmu presents multiple consoles and simple GUI applications as one customizable GUI window with tabs and a status bar.</td>
<td><a href="https://conemu.github.io/">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>ConsoleZ</td>
<td>This is a modified version of Console 2 for a better experience under Windows Vista/7/8/10 and a better visual rendering.</td>
<td><a href="https://github.com/cbucher/console">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>Control Pad</td>
<td>
ControlPad turns the numeric keypad on your keyboard to a Windows command execution system.
You may configure any numeric code to execute programs, open documents, open web pages or send series of keystrokes to the operating system.</td>
<td><a href="http://sector-seven.net/software/controlpad">Download</a></td>
<td>Productivity</td>
</tr>
<td>Cppcheck</td>
<td>Cppcheck is a static code analysis tool for the C and C++ programming languages. It is a versatile tool that can check non-standard code. The creator and lead developer is Daniel Marjamäki.</td>
<td><a href="http://cppcheck.sourceforge.net/">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>Cryptomator</td>
<td>Open Source client-side encryption for Dropbox, Google Drive, you name it. Protect your cloud files.</td>
<td><a href="https://cryptomator.org/">Download</a></td>
<td>Security</td>
</tr>
<tr>
<td>CrystalDiskInfo</td>
<td>A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe.</td>
<td><a href="https://crystalmark.info/en/software/crystaldiskinfo/">Download</a></td>
<td>Hardware</td>
</tr>
<tr>
<td>CrystalDiskMark</td>
<td>CrystalDiskMark is a disk benchmark software.</td>
<td><a href="https://crystalmark.info/en/software/crystaldiskmark/">Download</a></td>
<td>Hardware</td>
</tr>
<tr>
<td>CuteMarkEd</td>
<td>A Qt-based, free and open source Markdown editor with live HTML preview, math expressions, code and markdown syntax highlighting. See the features page for more information.</td>
<td><a href="https://cloose.github.io/CuteMarkEd/">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>DB Browser</td>
<td>DB Browser for SQLite is a high quality, visual, open source tool to create, design, and edit database files compatible with SQLite.</td>
<td><a href="http://sqlitebrowser.org/">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>Display Driver Uninstaller</td>
<td>Display Driver Uninstaller is a driver removal utility that can help you completely uninstall AMD/NVIDIA graphics card drivers and packages from your system, without leaving leftovers behind (including registry keys, folders and files, driver store).</td>
<td><a href="http://www.guru3d.com/files-details/display-driver-uninstaller-download.html">Download</a></td>
<td>Hardware</td>
</tr>
<tr>
<td>DSpeech</td>
<td>DSpeech is a TTS (Text To Speech) program with functionality of ASR (Automatic Speech Recognition) integrated.</td>
<td><a href="http://dimio.altervista.org/eng/">Download</a></td>
<td>Audio</td>
</tr>
<tr>
<td>Daemon Tools</td>
<td>DAEMON Tools is a virtual drive and optical disc authoring program for Microsoft Windows and Mac OS.</td>
<td><a href="https://www.daemon-tools.cc/downloads">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>darktable</td>
<td>darktable is an open source photography workflow application and raw developer. A virtual lighttable and darkroom for photographers. It manages your digital negatives in a database, lets you view them through a zoomable lighttable and enables you to develop raw images and enhance them.</td>
<td><a href="https://www.darktable.org/">Download</a></td>
<td>Image Processing</td>
</tr>
<tr>
<td>Davinci Resolve</td>
<td>DaVinci Resolve 15 is the world's first solution that combines professional offline and online editing, color correction, audio post production and now visual effects all in one software tool</td>
<td><a href="https://www.blackmagicdesign.com/ca/products/davinciresolve/">Download</a></td>
<td>Video Editing</td>
</tr>
<tr>
<td>Dimmer</td>
<td>Dimmer is a little free application designed to help control the brightness of your computer screen, specially to reduce the brightness beyond what the hardware alone is capable of. </td>
<td><a href="http://www.nelsonpires.com/software/dimmer/">Download</a></td>
<td>Personalization</td>
</tr>
<tr>
<td>Discord</td>
<td>Discord is a proprietary freeware VoIP application designed for gaming communities. </td>
<td><a href="https://discordapp.com/">Download</a></td>
<td>Social</td>
</tr>
<tr>
<td>Disk Fan</td>
<td>Disk Space Fan 4 is a fast disk space analyzer and duplicate file remover software. </td>
<td><a href="http://www.diskspacefan.com/download.html">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>DisplayFusion</td>
<td>DisplayFusion will make your multi-monitor life much easier! With powerful features like Multi-Monitor Taskbars, TitleBar Buttons and fully customizable HotKeys, DisplayFusion will make managing your multiple monitors easy.</td>
<td><a href="https://www.displayfusion.com/">Download</a></td>
<td>Hardware</td>
</tr>
<tr>
<td>Ditto</td>
<td>Ditto is an extension to the standard windows clipboard.</td>
<td><a href="https://ditto-cp.sourceforge.io/">Download</a></td>
<td>Productivity</td>
</tr>
<tr>
<td>Don't Panic!</td>
<td>Don't want to get busted by your boss or your teacher playing Solitaire, chatting or surfing the web? Close (hide or minimize) and open multiple programs with the click of a button. So you won't have to panic anymore...</td>
<td><a href="http://dont-panic.sourceforge.net/">Download</a></td>
<td>Productivity</td>
</tr>
<tr>
<td>Dopamine</td>
<td>Dopamine is an audio player which tries to make organizing and listening to music as simple and pretty as possible. It can play wav, mp3, ogg vorbis, flac, wma, ape, opus and m4a/aac.</td>
<td><a href="http://www.digimezzo.com/software/dopamine/">Download</a></td>
<td>Music</td>
</tr>
<tr>
<td>Double Commander</td>
<td>Double Commander is an open source multi-platform two-panel orthodox file manager that is inspired by the Microsoft Windows-only Total Commander.</td>
<td><a href="https://doublecmd.sourceforge.io/">Download</a></td>
<td>File Manager</td>
</tr>
<tr>
<td>DraftSight</td>
<td>DraftSight is a professional-grade 2D design and drafting solution that lets you create, edit, view and markup any kind of 2D drawing.</td>
<td><a href="https://www.3ds.com/products-services/draftsight-cad-software/">Download</a></td>
<td>Image Creation</td>
</tr>
<tr>
<td>Dropit</td>
<td>Application to automatically process and organize your files, to move, compress, extract, rename, delete, list, send by mail, encrypt, etc.</td>
<td><a href="http://www.dropitproject.com/">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>Dukto</td>
<td>Dukto is an easy file transfer tool designed for LAN use. </td>
<td><a href="https://sourceforge.net/projects/dukto/">Download</a></td>
<td>Networking</td>
</tr>
<tr>
<td>Duplicati</td>
<td>Duplicati is a backup client that securely stores encrypted, incremental, compressed remote backups of local files on cloud storage services and remote file servers.</td>
<td><a href="https://www.duplicati.com/">Download</a></td>
<td>File Backup</td>
</tr>
<tr>
<td>Durazno</td>
<td>XInput wrapper that allows controller customization.</td>
<td><a href="https://github.com/KrossX/Durazno">Download</a></td>
<td>Input</td>
</tr>
<tr>
<td>ENCRYPTO</td>
<td>Encrypto takes any file or folder and adds AES-256 encryption to it. ... both can encrypt and send files to each other with Encrypto.</td>
<td><a href="https://macpaw.com/encrypto">Download</a></td>
<td>File Security</td>
</tr>
<tr>
<td>EarTrumpet</td>
<td>Per-application volume control.</td>
<td><a href="https://github.com/File-New-Project/EarTrumpet">Download</a></td>
<td>Audio</td>
</tr>
<tr>
<td>Easy Window Switcher</td>
<td>Easy Window Switcher makes switching between different windows as easy as alt + backtick.</td>
<td><a href="http://neosmart.net/EasySwitch/">Download</a></td>
<td>Productivity</td>
</tr>
<tr>
<td>Easy2Boot</td>
<td>A new USB multiboot solution. Just copy files to the USB drive and boot.</td>
<td><a href="http://www.easy2boot.com/">Download</a></td>
<td>OS</td>
</tr>
<tr>
<td>Eclipse</td>
<td>"Desktop IDEs. Eclipse is famous for our Java Integrated Development Environment (IDE), but our C/C++ IDE and PHP IDE are pretty cool too. You can easily combine language support and other features into any of our default packages, and the Eclipse Marketplace allows for virtually unlimited customization and extension."</td>
<td><a href="https://www.eclipse.org/ide/">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>Exact Audio Copy</td>
<td>Exact Audio Copy is a CD ripping program for Microsoft Windows. It has also been tested to work under newer versions of Wine on Linux.</td>
<td><a href="http://www.exactaudiocopy.de/">Download</a></td>
<td>Audio</td>
</tr>
<tr>
<td>Explorer++</td>
<td>Explorer++ is a lightweight and fast file manager for Windows.</td>
<td><a href="https://explorerplusplus.com/">Download</a></td>
<td>File Manager</td>
</tr>
<tr>
<td>Ext2Fsd</td>
<td>Ext2Fsd is a free Installable File System driver written in C for the Microsoft Windows operating system family. It facilitates read and write access to the ext2, ext3 and ext4 file systems.</td>
<td><a href="http://www.ext2fsd.com/">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>FastStone Image Viewer</td>
<td>FastStone Image Viewer is an image viewer and organizer for Microsoft Windows, provided free of charge for personal and educational use, as of version 6.3. The program also includes basic image editing tools.</td>
<td><a href="http://www.faststone.org/">Download</a></td>
<td>Image Viewer</td>
</tr>
<tr>
<td>FFmpeg</td>
<td>FFmpeg is a free software project, the product of which is a vast software suite of libraries and programs for handling video, audio, and other multimedia files and streams.</td>
<td><a href="https://www.ffmpeg.org/">Download</a></td>
<td>Video Codec</td>
</tr>
<tr>
<td>Fiddler</td>
<td>Fiddler is an HTTP debugging proxy server application written by Eric Lawrence, formerly a Program Manager on the Internet Explorer development team at Microsoft.</td>
<td><a href="https://www.telerik.com/fiddler">Download</a></td>
<td>Networking</td>
</tr>
<tr>
<td>FileZilla</td>
<td>FileZilla is a free software, cross-platform FTP application, consisting of FileZilla Client and FileZilla Server. Client binaries are available for Windows, Linux, and macOS, server binaries are available for Windows only.</td>
<td><a href="https://filezilla-project.org/">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>Firefox</td>
<td>Mozilla Firefox is a free and open-source web browser developed by Mozilla Foundation and its subsidiary, Mozilla Corporation. Firefox is available for Windows, macOS, Linux, and BSD operating systems.</td>
<td><a href="https://www.mozilla.org/en-US/firefox/new/">Download</a></td>
<td>Internet</td>
</tr>
<tr>
<td>Flawless Widescreen</td>
<td>Flawless Widescreen was created in an effort to make it easier to craft fixes and patches to get games functioning correctly in UltraWide/Surround/Eyefinity gaming resolutions.</td>
<td><a href="https://www.flawlesswidescreen.org/">Download</a></td>
<td>Hardware</td>
</tr>
<tr>
<td>f.lux</td>
<td>f.lux is a cross-platform computer program that adjusts a display's color temperature according to location and time of day so that the eyes could rest.</td>
<td><a href="https://justgetflux.com/">Download</a></td>
<td>Personalization</td>
</tr>
<tr>
<td>FontForge</td>
<td>FontForge is a font editor which supports many common font formats. </td>
<td><a href="https://fontforge.github.io/en-US/">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>foobar2000</td>
<td>foobar2000 is a freeware audio player for Microsoft Windows, iOS and Android developed by Peter Pawłowski.</td>
<td><a href="https://www.foobar2000.org/">Download</a></td>
<td>Music</td>
</tr>
<tr>
<td>FotoSketcher</td>
<td>Turn photo to painting, drawing, sketch or cartoon. FotoSketcher is a 100% free program to automatically turn your photos into beautiful art automatically.</td>
<td><a href="https://fotosketcher.com/">Download</a></td>
<td>Image Generation</td>
</tr>
<tr>
<td>Foxit PDF Reader</td>
<td>Foxit Software, Inc. develops Portable Document Format software and tools used to create, edit, sign, and secure files and digital documents.</td>
<td><a href="https://www.foxitsoftware.com/pdf-reader/">Download</a></td>
<td>Office</td>
</tr>
<tr>
<td>Fraps</td>
<td>Fraps is a benchmarking, screen capture and screen recording utility for Windows developed by Beepa. It can capture from software that uses DirectX and OpenGL, such as PC games.</td>
<td><a href="http://www.fraps.com/">Download</a></td>
<td>Video Recording </td>
</tr>
<tr>
<td>FireAlpaca</td>
<td>FireAlpaca is the free paint tool that is available in 10 languages and compatible with both Mac and Windows. Simple tools and controls let you draw an illustration easily.</td>
<td><a href="http://firealpaca.com/">Download</a></td>
<td>Image Creation</td>
</tr>
<tr>
<td>FreeFileSync</td>
<td>FreeFileSync is a free and open source program used for file synchronization. It is available on Windows, Linux and OS X. The project is backed by donations and by the installation of OpenCandy malware during installation of the free edition.</td>
<td><a href="https://freefilesync.org/">Download</a></td>
<td>File</td>
</tr>
<tr>
<td>FreeNAS</td>
<td>FreeNAS is a free and open-source network-attached storage software based on FreeBSD and the OpenZFS file system.</td>
<td><a href="http://www.freenas.org/">Download</a></td>
<td>Networking</td>
</tr>
<tr>
<td>Frhed</td>
<td>Frhed is a binary file editor or hex editor for the Microsoft Windows platform.</td>
<td><a href="http://frhed.sourceforge.net/en/">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>FreeOffice</td>
<td>FreeOffice is a complete office suite with a word processor, a spreadsheet application and a presentation program – all compatible with their counterparts in Microsoft Office.</td>
<td><a href="http://www.freeoffice.com/en/">Download</a></td>
<td>Office</td>
</tr>
<tr>
<td>Fusion 360</td>
<td>Fusion 360 free 3D CAD/CAM design software for students, educators, and academic institutions.</td>
<td><a href="https://www.autodesk.com/products/fusion-360/students-teachers-educators">Download</a></td>
<td>Modeling</td>
</tr>
<tr>
<td>Fyre</td>
<td>Fyre is a tool for producing computational artwork based on histograms of iterated chaotic functions.</td>
<td><a href="http://fyre.navi.cx/about.shtml">Download</a></td>
<td>Image Generation</td>
</tr>
<tr>
<td>GIMP</td>
<td>GIMP is a free and open-source raster graphics editor used for image retouching and editing, free-form drawing, converting between different image formats, and more specialized tasks.</td>
<td><a href="https://www.gimp.org/">Download</a></td>
<td>Image Creation</td>
</tr>
<tr>
<td>GOG Galaxy</td>
<td>The gaming Client designed for a convenient purchasing, playing and updating games, as well as an online play between gaming platforms, GOG Galaxy is also built with optionality in mind, and a belief that you should own the games you buy.</td>
<td><a href="https://www.gog.com/galaxy">Download</a></td>
<td>Gaming Platform</td>
</tr>
<tr>
<td>GPU-Z</td>
<td>GPU-Z is a lightweight utility designed to provide information about video cards and GPUs.</td>
<td><a href="https://www.techpowerup.com/gpuz/">Download</a></td>
<td>Hardware</td>
</tr>
<tr>
<td>gVim</td>
<td>gVim is a clone of Bill Joy's vi text editor program for Unix. It was written by Bram Moolenaar based on source for a port of the Stevie editor to the Amiga and first released publicly in 1991.</td>
<td><a href="https://sourceforge.net/projects/portablegvim/">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>GamePipe</td>
<td>Game Pipe is an open-source game library management tool for Windows that allows you to move your Steam games around your PC and network with ease.</td>
<td><a href="https://github.com/DjScribbles/GamePipe">Download</a></td>
<td>Gaming Tools</td>
</tr>
<tr>
<td>GameSave Manager</td>
<td>With GameSave Manager, you can easily backup, restore and transfer your gamesave(s).</td>
<td><a href="http://www.gamesave-manager.com/">Download</a></td>
<td>Gaming Tools</td>
</tr>
<tr>
<td>GeDoSaTo</td>
<td>The generic downSampling tool.</td>
<td><a href="https://github.com/PeterTh/gedosato">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>Geek Uninstaller</td>
<td>GeekUninstaller performs deep and fast scanning after uninstall and removes all leftovers to keep your PC clean and in tip-top shape. </td>
<td><a href="https://geekuninstaller.com/">Download</a></td>
<td>Install</td>
</tr>
<tr>
<td>Git Extensions</td>
<td>Git Extensions is a standalone UI tool for managing git repositories.</td>
<td><a href="https://github.com/gitextensions/gitextensions">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>GitHub Desktop</td>
<td>Extend your GitHub workflow beyond your browser with GitHub Desktop, completely redesigned with Electron. Get a unified cross-platform experience that’s completely open source and ready to customize.</td>
<td><a href="https://desktop.github.com/">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>GitKraken</td>
<td>GitKraken is the legendary Git GUI client for Windows, Mac and Linux. Git beginners and advanced users will increase efficiency through the intuitive interface, seamless integrations and a faster, more fluid workflow.</td>
<td><a href="https://www.gitkraken.com/">Download</a></td>
<td>Development</td>
</tr>
<tr>
<td>Glary Utilities</td>
<td>Glary Utilities provides many more advanced features which are non existent in ccleaner.</td>
<td><a href="https://www.glarysoft.com/">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>Glasswire</td>
<td>GlassWire is a modern personal firewall and network monitor with over 10 million downloads.</td>
<td><a href="https://www.glasswire.com/">Download</a></td>
<td>Networking</td>
</tr>
<tr>
<td>GnuPG</td>
<td>GNU Privacy Guard is a free software replacement for Symantec's PGP cryptographic software suite. GnuPG is compliant with RFC 4880, which is the IETF standards track specification of OpenPGP.</td>
<td><a href="https://www.gnupg.org/">Download</a></td>
<td>Networking</td>
</tr>
<tr>
<td>Google Chrome</td>
<td>Google Chrome is a freeware web browser developed by Google.</td>
<td><a href="https://www.google.ca/chrome/">Download</a></td>
<td>Internet</td>
</tr>
<tr>
<td>Gopher360</td>
<td>Gopher360 is a free zero-config app that instantly turns your Xbox 360, Xbox One, or even DualShock controller into a mouse and keyboard. Just download, run, and relax.</td>
<td><a href="https://github.com/Tylemagne/Gopher360">Download</a></td>
<td>Input</td>
</tr>
<tr>
<td>Gramps</td>
<td>Research, organize and share your family tree with Gramps. Gramps is a free software project and community. We strive to produce a genealogy program that is both intuitive for hobbyists and feature-complete for professional genealogists.</td>
<td><a href="https://gramps-project.org/introduction-WP/">Download</a></td>
<td>System Tools</td>
</tr>
<tr>
<td>GraphicsGale</td>
<td>GraphicsGale is a animation graphic editor that is easy to use.</td>
<td><a href="https://graphicsgale.com/us/">Download</a></td>
<td>Video Animation</td>
</tr>