-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAWESOME-MAC.HTML
1056 lines (1056 loc) · 230 KB
/
AWESOME-MAC.HTML
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
<h1 id="awesome-mac">Awesome Mac</h1>
<!--rehype:style=font-size: 38px; border-bottom: 0; display: flex; min-height: 260px; align-items: center; justify-content: center;-->
<p><a href="https://github.com/sindresorhus/awesome"><img src="https://jaywcjlove.github.io/sb/ico/awesome.svg" alt="Awesome" /></a> <a href="README-zh.md"><img src="https://jaywcjlove.github.io/sb/lang/chinese.svg" alt="jaywcjlove/sb" /></a> <a href="https://gitter.im/awesome-mac/en?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=body_badge"><img src="https://jaywcjlove.github.io/sb/ico/gitter.svg" alt="Gitter" /></a> <a href="https://www.trackawesomelist.com/jaywcjlove/awesome-mac/"><img src="https://www.trackawesomelist.com/badge.svg" alt="Track Awesome List" /></a> <a href="https://app.fossa.io/projects/git%2Bgithub.com%2Fjaywcjlove%2Fawesome-mac?ref=badge_shield"><img src="https://app.fossa.io/api/projects/git%2Bgithub.com%2Fjaywcjlove%2Fawesome-mac.svg?type=shield" alt="FOSSA Status" /></a> <a href="#backers"><img src="https://opencollective.com/awesome-mac/backers/badge.svg" alt="Backers on Open Collective" /></a> <a href="#sponsors"><img src="https://opencollective.com/awesome-mac/sponsors/badge.svg" alt="Sponsors on Open Collective" /></a> <!--rehype:style=text-align: center;--></p>
<p> Now we have become very big and different from the original idea. Here we collect awesome macOS software in various categories. Feel free to <strong>star</strong> and <strong>fork</strong>.</p>
<p>Any comments, suggestions? <a href="https://github.com/jaywcjlove/awesome-mac/issues">Let us know!</a> We love PRs :) Please take a look at the <a href="https://github.com/jaywcjlove/awesome-mac/blob/master/CONTRIBUTING.md">contributing</a> guidelines before opening one. Follow the <a href="https://github.com/sindresorhus/awesome">awesome</a> list.</p>
<p><strong>Explanation</strong></p>
<p><a href="README.md">English</a> | <a href="README-zh.md">中文</a></p>
<p><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> means <strong>open source</strong>, click to open <strong>open source</strong> repo;<br />
<img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> means <strong>free</strong> to use, or <strong>free</strong> personal license;<br />
<img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /> means <strong>App store</strong> hyperlink;<br />
<img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /> means hyperlink to a corresponding <strong>Awesome list</strong> for the item;</p>
<p><strong>Awesome Mac App for macOS</strong>. Installers for the latest stable build for Mac can be <a href="https://github.com/jaywcjlove/amac/releases">downloaded here</a>.</p>
<p><a href="https://github.com/jaywcjlove/amac/releases"><img src="http://jaywcjlove.github.io/sb/download/macos.svg" alt="Get it on macOS" /></a></p>
<h2 id="contents">Contents</h2>
<ul>
<li><a href="#awesome-mac">Awesome Mac</a></li>
<li><a href="#contents">Contents</a></li>
<li><a href="#reading-and-writing-tools">Reading and Writing Tools</a>
<ul>
<li><a href="#text-editors">Text Editors</a></li>
<li><a href="#office">Office</a></li>
<li><a href="#markdown-tools">Markdown Tools</a></li>
<li><a href="#note-taking">Note-taking</a></li>
<li><a href="#journaling">Journaling</a></li>
<li><a href="#ebooks">Ebooks</a></li>
<li><a href="#rss">RSS</a></li>
<li><a href="#others">Others</a></li>
</ul></li>
<li><a href="#developer-tools">Developer Tools</a>
<ul>
<li><a href="#ides">IDEs</a></li>
<li><a href="#developer-utilities">Developer Utilities</a></li>
<li><a href="#regular-expression-editors">Regular Expression Editors</a></li>
<li><a href="#api-development-and-analysis">API Development and Analysis</a></li>
<li><a href="#network-analysis">Network Analysis</a></li>
<li><a href="#command-line-tools">Command Line Tools</a></li>
<li><a href="#frameworks-for-hybrid-applications">Frameworks For Hybrid Applications</a></li>
<li><a href="#version-control">Version Control</a></li>
<li><a href="#virtualization">Virtualization</a></li>
<li><a href="#databases">Databases</a></li>
</ul></li>
<li><a href="#design-and-product">Design and Product</a>
<ul>
<li><a href="#design-tools">Design Tools</a></li>
<li><a href="#prototyping-and-mind-mapping-tools">Prototyping and Mind-Mapping Tools</a></li>
<li><a href="#screencapturing-software">Screencapturing Software</a></li>
<li><a href="#other-tools">Other Tools</a></li>
</ul></li>
<li><a href="#communication">Communication</a>
<ul>
<li><a href="#collaboration-and-team-tools">Collaboration and Team Tools</a></li>
<li><a href="#email-clients">Email Clients</a></li>
<li><a href="#file-sharing">File Sharing</a></li>
</ul></li>
<li><a href="#data-recovery-tools">Data Recovery Tools</a></li>
<li><a href="#audio-and-video-tools">Audio and Video Tools</a>
<ul>
<li><a href="#audio-record-and-process">Audio Record and Process</a></li>
</ul></li>
<li><a href="#download-management-tools">Download Management Tools</a></li>
<li><a href="#cloud-storage">Cloud Storage</a></li>
<li><a href="#input-methods">Input Methods</a></li>
<li><a href="#browsers">Browsers</a></li>
<li><a href="#translation-tools">Translation Tools</a></li>
<li><a href="#encryption">Encryption</a></li>
<li><a href="#security-tools">Security Tools</a></li>
<li><a href="#proxy-and-vpn-tools">Proxy and VPN Tools</a></li>
<li><a href="#utilities">Utilities</a>
<ul>
<li><a href="#clipboard-tools">Clipboard Tools</a></li>
<li><a href="#menu-bar-tools">Menu Bar Tools</a></li>
<li><a href="#file-organization-tools">File Organization Tools</a></li>
<li><a href="#general-tools">General Tools</a></li>
<li><a href="#to-do-lists">To-Do Lists</a></li>
<li><a href="#productivity">Productivity</a></li>
<li><a href="#window-management">Window Management</a></li>
<li><a href="#password-management">Password Management</a></li>
<li><a href="#finder-tools">Finder Tools</a></li>
<li><a href="#quality-of-life-improvements">Quality of Life Improvements</a></li>
<li><a href="#system-related-tools">System Related Tools</a></li>
</ul></li>
<li><a href="#gaming-software">Gaming Software</a></li>
<li><a href="#remote-login-software">Remote Login Software</a></li>
<li><a href="#social-networking">Social Networking</a></li>
<li><a href="#quicklook-plugins">QuickLook Plugins</a></li>
<li><a href="#third-party-app-markets">Third Party App Markets</a>
<ul>
<li><a href="#package-managers">Package Managers</a></li>
</ul></li>
<li><a href="#mac-app-download-sites">Mac App Download Sites</a>
<ul>
<li><a href="#genuine-sites">Genuine Sites</a></li>
<li><a href="#pirated-software-download-site-blacklist">Pirated software download site blacklist</a></li>
</ul></li>
<li><a href="#podcasts">Podcasts</a></li>
<li><a href="#contributors">Contributors</a></li>
<li><a href="#backers">Backers</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#license">License</a></li>
</ul>
<!--start-->
<h2 id="reading-and-writing-tools">Reading and Writing Tools</h2>
<p><em>Applications to edit text, I suggest the open-source editors</em></p>
<h4 id="text-editors">Text Editors</h4>
<ul>
<li><a href="https://atom.io">Atom</a> - Hackable text editor for the 21st century made by GitHub. <a href="editor-plugin.md#atom-plugin">Atom Plugins</a>. <a href="https://github.com/atom/atom"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/mehcode/awesome-atom#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></li>
<li><a href="http://www.bear-writer.com/">Bear Writer</a> - Beautiful, flexible writing app for crafting notes and prose. <a href="https://itunes.apple.com/us/app/bear-beautiful-writing-app/id1091189122?ls=1&mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://bootstrapstudio.io/">Bootstrap Studio</a> - A powerful desktop app for creating responsive websites using the Bootstrap framework.</li>
<li><a href="http://brackets.io">Brackets</a> - A modern, open source text editor that understands web design. <a href="https://github.com/adobe/brackets/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://chocolatapp.com/">Chocolat</a> - Native text editor.</li>
<li><a href="http://panic.com/coda/">Coda2</a> - Fast, clean and powerful text editor.</li>
<li><a href="https://coteditor.com">CotEditor</a> - Lightweight plain-text editor for macOS. <a href="https://github.com/coteditor/CotEditor/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.emacswiki.org/emacs/EmacsForMacOS">Emacs</a> - A popular text editor used mainly on Unix-based systems by programmers, scientists, engineers, students, and system administrators. <a href="https://git.savannah.gnu.org/cgit/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/emacs-tw/awesome-emacs#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></li>
<li><a href="http://lighttable.com/">LightTable</a> - The next generation code editor. <a href="https://github.com/LightTable/LightTable"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://micro-editor.github.io">micro</a> - Modern and intuitive terminal-based text editor. <a href="https://github.com/ory/editor"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://nova.app">Nova</a> - Modern, extensible text editor, by the makers of Coda.</li>
<li><a href="https://github.com/onivim/oni">ONI</a> - IDE powered by Neovim. <a href="https://github.com/onivim/oni"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.sublimetext.com/3">Sublime Text</a> - Sophisticated text editor for code, markup and prose. You’ll love the slick user interface, extraordinary features and amazing performance, <a href="editor-plugin.md#sublime-text-plugin">Sublime Text Plugins</a>. <a href="https://github.com/dreikanter/sublime-bookmarks#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></li>
<li><a href="https://macromates.com">TextMate</a> - Editor that brings Apple’s approach to operating systems into the world of text editors. <a href="https://github.com/textmate/textmate"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.vim.org/">Vim</a> - Highly configurable text editor built to make creating and changing any kind of text very efficient, <a href="editor-plugin.md#vim-plugin">Vim Plugins</a>. <a href="https://github.com/vim/vim"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/mhinz/vim-galore#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></li>
<li><a href="http://vimr.org/">Vimr</a> - Refined Vim Experience for OS X. <a href="https://github.com/qvacua/vimr/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h4 id="office">Office</h4>
<ul>
<li><a href="https://www.libreoffice.org">LibreOffice</a> - LibreOffice is free and open-source software office software. Software is tested and used daily by a large and devoted user community. <a href="https://www.libreoffice.org/about-us/source-code/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.wps.com/mac">WPS</a> - Is a cross-platform office software suite. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://apps.apple.com/app/pages/id409201541?mt=12">Pages</a> Documents that stand apart. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/pages/id409201541?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://apps.apple.com/app/keynote/id409183694?mt=12">Keynote</a> Build stunning presentations. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/keynote/id409183694?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://apps.apple.com/app/numbers/id409203825?mt=12">Numbers</a> Create impressive spreadsheets. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/numbers/id409203825?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://products.office.com/en-us/mac/microsoft-office-for-mac">Microsoft Office</a> Unmistakably Office, designed for Mac. <a href="https://www.apple.com/search/office?page=1&sel=accessories&f=software#!&f=software&fh=4649"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.softmaker.com/en/softmaker-office">SoftMaker Office</a> A complete office suite that aims for full compatibility with Microsoft Office documents</li>
</ul>
<h4 id="markdown-tools">Markdown Tools</h4>
<blockquote>
<p><a href="https://github.com/BubuAnabelas/awesome-markdown#tools"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></p>
</blockquote>
<ul>
<li><a href="https://github.com/egoist/eme">EME</a> - Open-source Markdown editor with an interface like Chrome. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></li>
<li><a href="https://ia.net/writer/">iA Writer</a> - Writing app with an emphasis on simplicity and design.</li>
<li><a href="https://getlightpaper.com/">LightPaper</a> - Simple, beautiful, yet powerful text editor for your Mac.</li>
<li><a href="http://macdown.uranusjr.com/">MacDown</a> - Open-source Markdown editor for OS X. <a href="https://github.com/MacDownApp/macdown"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://marked2app.com/">Marked 2</a> - This is the Markdown preview with an elegant and powerful set of tools for all writers.</li>
<li><a href="https://github.com/marktext/marktext">MarkText</a> - Next generation markdown editor, running on platforms of MacOS Windows and Linux. <a href="https://github.com/marktext/marktext"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://marp.app">Marp</a> - Markdown presentation writer with cross-platform support. <a href="https://github.com/yhatt/marp"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://marxi.co/">Marxico</a> - Delicate Markdown editor for Evernote. Reliable storage and sync.</li>
<li><a href="http://www.mweb.im/">MWeb</a> - Pro Markdown writing, and static blog generator App.</li>
<li><a href="http://www.textnutwriter.com/">TextNut</a> - Rich-format editor featuring Markdown export and Markdown syntax hints. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.typora.io/">Typora</a> - Truly minimal Markdown editor featuring seamless live preview. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.ulyssesapp.com/features/">Ulysses</a> - The Ultimate Writing App for Mac, iPad and iPhone.</li>
</ul>
<h4 id="note-taking">Note-taking</h4>
<ul>
<li><a href="https://agenda.com/">Agenda</a> - Date-focused note taking app for both planning and documenting your projects. <a href="https://itunes.apple.com/app/id1287445660?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://boostnote.io/">Boostnote</a> - Note-taking app made for programmers. <a href="https://github.com/BoostIO/Boostnote"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://www.getdnote.com/">Dnote</a> - A simple command line notebook with multi-device sync and a web interface. <a href="https://github.com/dnote/dnote"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://evernote.com/">Evernote</a> - Infamous note-taking app, available on many platforms. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://fsnot.es/">FSNotes</a> - File System Notes is a modern notes manager, native on macOS and iOS. <a href="https://github.com/glushchenko/fsnotes"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <a href="https://apps.apple.com/gb/app/fsnotes/id1277179284?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://goobapp.com/">Gooba</a> - Writing app and task manager with a simple and interactive design.</li>
<li><a href="https://www.inkdrop.info/">Inkdrop</a> - Notebook app for Markdown lovers built on top of Electron.</li>
<li><a href="https://joplin.cozic.net/">Joplin</a> - Cross platform open-source notepad with markdown support and todo list manager with synchronisation capabilities. <a href="https://github.com/laurent22/joplin"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://marginnote.com/">MarginNote</a> - In-depth PDF and EPUB reading, learning, managing and note taking app.</li>
<li><a href="https://github.com/notable/notable">Notable</a> - The markdown-based note-taking app that doesn’t suck.</li>
<li><a href="https://www.zoho.com/notebook/notebook-for-mac.html">Notebook</a> Note-taking app. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.get-notes.com/">Notes</a> - Clean, simple note-taking app. <a href="https://github.com/nuttyartist/notes"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://noteship.com">Noteship</a> - Turn notes into knowledge (spreadsheet view, heading summaries, etc.). Works offline, everything is saved locally. <a href="https://apps.apple.com/us/app/noteship/id1571711347?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.notion.so/">Notion</a> -Notion is the all-in-one workspace. From notes, tasks, wikis, to database, Notion is all you need. Works great for teams and individuals.</li>
<li><a href="https://obsidian.md/">Obsidian</a> - Obsidian is a powerful knowledge base that works on top of a local folder of plain text Markdown files.</li>
<li><a href="https://www.onenote.com/">OneNote</a> - Note-taking app by Microsoft. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.apptorium.com/sidenotes">SideNotes</a> - Quick notes on the screen side. Take notes while working with other apps. Use Markdown for text formatting.</li>
<li><a href="http://www.qownnotes.org/">QOwnNotes</a> - Open-source notepad with markdown support and todo list manager. <a href="https://github.com/pbek/QOwnNotes"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://happenapps.com/#quiver">Quiver</a> - The Programmer’s Notebook, lets you easily mix text, code, Markdown and LaTeX within one note, edit code with an awesome code editor and live preview Markdown and LaTeX.</li>
<li><a href="https://www.yuque.com/install/desktop">AliYuQue</a> - Cloud note-taking knowledge management, collaboration platform, Markdown based writing, support embedded flow chart, brain diagram, timing sequence, code rendering, Sketch board creation, personal knowledge sharing, etc. Compared to youdao cloud note and evernote similar products, which include all of its functions, support knowledge sharing and more powerful creation, collaboration and editor, it comes from alibaba ant financial.<img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h4 id="journaling">Journaling</h4>
<ul>
<li><a href="https://dayoneapp.com/">Day One</a> - Excellent journaling app using text, photos, video, audio, location data, and more. <a href="https://apps.apple.com/us/app/day-one/id1055511498?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://journey.cloud/">Journey</a> - Journaling app with many features and with apps for every platform available. <a href="https://apps.apple.com/us/app/journey-diary-journal/id1265425422?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://github.com/lostdesign/linked">linked</a> - Link your thoughts to days, distraction free. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></li>
</ul>
<h4 id="ebooks">Ebooks</h4>
<ul>
<li><a href="http://calibre-ebook.com/">Calibre</a> - Free and open-source e-book computer software application suite which runs on multiple platforms, allows users to manage e-book collections as well as create, edit, and read e-books. <a href="https://github.com/kovidgoyal/calibre"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="http://www.clearview-reader.com/clearview/">Clearview</a> - Tabbed style e-book reader for PDF, EPUB (DRM free), CHM, and MOBI. <a href="https://apps.apple.com/us/app/clearview/id557090104?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://github.com/NSGod/ichm">iChm</a> - Ebook reader for CHM (Microsoft Compiled HTML help) files. <a href="https://github.com/NSGod/ichm"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.amazon.com/l/16571048011">Kindle App</a> - Amazon official reading app of kindle.</li>
<li><a href="http://klib.me/">Klib</a> - New way to manage highlights for Kindle and iBooks. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/id1196268448?mt=12&at=1000lv4R&ct=klib_me"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.scribus.net/">Scribus</a> - Professional layout and publishing software supporting EPS and SVG import/export, and PDF support. <a href="https://sourceforge.net/projects/scribus/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://sigil-ebook.com/">Sigil</a> - Multi-platform EPUB ebook Editor. <a href="https://github.com/Sigil-Ebook/Sigil"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
</ul>
<h4 id="rss">RSS</h4>
<ul>
<li><a href="http://www.rockysandstudio.com/">Leaf</a> - Amazing news reader dedicated to help you enjoy your daily news and easily manage your subscriptions.</li>
<li><a href="https://ranchero.com/netnewswire/">NetNewsWire</a> - It’s a free and open source feed reader for macOS. <a href="https://github.com/brentsimmons/NetNewsWire"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="http://readkitapp.com/">ReadKit</a> - Mac read-later client supporting all major providers: Instapaper, Pocket and Readability. Even more, ReadKit is a full-featured RSS reader as well.</li>
<li><a href="http://reederapp.com/">Reeder 4</a> - News reader for Feedbin, Feedly, Feed Wrangler and so on. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://viennarss.github.io/">Vienna</a> - RSS/Atom reader for Mac OS X. <a href="https://github.com/ViennaRSS/vienna-rss"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://krillapps.com/feedy/">Feedy</a> - An elegant and lightweight RSS client and news reader for your Mac. <a href="https://itunes.apple.com/us/app/feedy-rss-client/id588288104?ls=1&mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
</ul>
<h4 id="others">Others</h4>
<ul>
<li><a href="https://github.com/vishaltelangre/bindPDF">bindPDF</a> - Combine multiple PDF files into a single PDF file using a friendly UI. <a href="https://github.com/vishaltelangre/bindPDF"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.hewbo.com/chm-reader.html">CHM Reader</a> - Read Compiled HTML (.chm) documents on your Mac. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://chmox.sourceforge.net/">Chmox</a> - Read CHM documents on your Mac. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://pdfexpert.com/">PDF Expert</a> - Read, annotate and edit PDFs, change text and images.</li>
<li><a href="http://www.pdfreaderpro.com">PDF Reader Pro</a> - You Can view, create, sign, convert and compress any PDF documents. <a href="https://itunes.apple.com/us/app/pdf-reader-pro-your-pdf-office/id825459243?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://skim-app.sourceforge.net">Skim</a> - PDF reader and note-taker for OS X. <a href="https://sourceforge.net/projects/skim-app/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://skyfonts.com/">SkyFonts</a> - The simplest way to try, install, and manage fonts.</li>
<li><a href="https://bananafishsoftware.com/products/spillo/">Spillo</a> - Powerful, beautiful and amazingly fast Pinboard client for OS X.</li>
<li><a href="https://www.tadviewer.com">Tad</a> - Application for viewing and analyzing tabular data such as CSV files. <a href="https://github.com/antonycourtney/tad"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.texpad.com/">texpad</a> - Great LaTeX editor for Mac with auto-update PDF and autocomplete LaTeX commands.</li>
</ul>
<h2 id="developer-tools">Developer Tools</h2>
<h4 id="ides">IDEs</h4>
<ul>
<li><a href="https://developer.android.com/studio/index.html">Android Studio</a> - The official IDE for Android, based on Intellij IDEA. <a href="http://tools.android.com/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/balsikandar/Android-Studio-Plugins#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></li>
<li><a href="https://www.decoide.org">Deco IDE</a> - The best IDE for building React Native apps. <a href="https://github.com/decosoftware/deco-ide"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.eclipse.org">Eclipse</a> - Popular open-source IDE, mainly for Java but with plugin support for a wide array of languages and platforms. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://espressoapp.com/">Espresso</a> - The web editor for Mac is back. For people who make delightful, innovative and fast websites.</li>
<li><a href="https://www.jetbrains.com/toolbox/">JetBrains Toolbox App</a> - Manage installed JetBrains tools, download new ones and open recent projects. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" />
<ul>
<li><a href="https://www.jetbrains.com/objc/">AppCode</a> - Smart IDE for iOS/macOS development</li>
<li><a href="https://www.jetbrains.com/clion/">CLion</a> - Powerful C and C++ IDE. (<strong>Free</strong> for Students)</li>
<li><a href="http://www.jetbrains.com/datagrip/">DataGrip</a> - Cross-Plaform IDE for Databases and SQL. <strong>FREE</strong> for Students, check <a href="https://www.jetbrains.com/student/">here</a> for more info.</li>
<li><a href="https://www.jetbrains.com/dataspell/">DataSpell</a> - The IDE for Professional Data Scientists</li>
<li><a href="https://www.jetbrains.com/go/">GoLand</a> - Provides ergonomic environment for Go development.</li>
<li><a href="https://www.jetbrains.com/idea/">IntelliJ IDEA</a> - Powerful IDE for JVM languages. (<strong>Free</strong> for Students)</li>
<li><a href="https://www.jetbrains.com/pycharm/">PyCharm</a> - Powerful Python IDE, which has professional version and community version.</li>
<li><a href="https://www.jetbrains.com/rider/">Rider</a> - Cross-Platform C# IDE. It is an alternative to Visual Studio by Microsoft with the additional benefit of getting Resharper features that are not available on Visual Studio for Mac.</li>
<li><a href="http://www.jetbrains.com/webstorm/">WebStorm</a> - The smartest JavaScript IDE by JetBrains. <strong>FREE</strong> for Students, check <a href="https://www.jetbrains.com/student/">here</a> for more info.</li>
</ul></li>
<li><a href="http://haskellformac.com">Haskell for Mac</a> - A Modern Development Environment for Haskell. <a href="https://itunes.apple.com/app/haskell-development-platform/id841285201"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://netbeans.org/">NetBeans IDE</a> - Free and open-source IDE, mainly used for Java development, but supports many other languages and frameworks. <a href="https://netbeans.org/community/sources/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://nova.app/">Nova</a> - From the creators of Coda and Transmit, bring you a beautiful, fast, flexible, native Mac code editor from <a href="https://panic.com/">Panic</a>.</li>
<li><a href="https://visualstudio.microsoft.com/free-developer-offers/">Visual Studio Community for Mac</a> - <strong>Free</strong> version. It supports classroom learning, individual developers and small companies. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://code.visualstudio.com/">Visual Studio Code</a> - Microsoft’s free & open-source editor, TypeScript friendly, <a href="editor-plugin.md#vscode-plugin">VSCode Plugins</a>. <a href="https://github.com/Microsoft/vscode"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/viatsko/awesome-vscode#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></li>
<li><a href="https://www.visualstudio.com/vs/visual-studio-mac/">Xamarin Studio</a> - Free cross platform C# IDE. Xamarin Studio supports iOS, Android and .Net development <a href="https://github.com/mono/monodevelop"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/benoitjadinon/awesome-xamarin#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></li>
<li><a href="https://developer.apple.com/xcode/">Xcode</a> - Essential IDE for iOS/macOS development. <a href="https://itunes.apple.com/app/id497799835"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.spyder-ide.org/">Spyder</a> - Powerful scientific environment written in Python, for Python.</li>
</ul>
<h4 id="developer-utilities">Developer Utilities</h4>
<ul>
<li><p><a href="http://www.publicspace.net/BetterRename/">BetterRename</a> - The most powerful and complete Mac file renaming application on the market. <a href="https://itunes.apple.com/us/app/better-rename-9/id414209656"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></p></li>
<li><p><a href="http://www.scootersoftware.com/">Beyond Compare</a> - Compare files and folders using simple, powerful commands that focus on the differences you are interested in and ignore those you are not. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://www.getbidbar.com">Bidbar</a> - Manage bash commands from the menu bar and run them with keyboard shortcuts.</p></li>
<li><p><a href="https://www.cacher.io/">Cacher</a> - Cloud-based, team-enabled code snippet manager with Gist sync, VSCode/Atom/Sublime packages and Mac/Windows/Linux/Web clients.</p></li>
<li><p><a href="https://www.cansnippet.com/">canSnippet</a> - Powerful snippet management tool that works across the whole operating system, always accessible via simple keyboard shortcut.</p></li>
<li><p><a href="https://codekitapp.com/">CodeKit</a> - Web development tool which can automatically compile Less, Sass, CoffeeScript, TypeScript, Jade and JavaScript, auto-refresh browsers and much more.</p></li>
<li><p><a href="https://www.conduktor.io">Conduktor</a> - Kafka desktop client. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://kapeli.com/dash">Dash</a> - Awesome API documentation browser and code snippet manager.</p></li>
<li><p><a href="http://sourcegear.com/diffmerge/">DiffMerge</a> - Application to visually compare and merge files. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/hschmidt/EnvPane">EnvPane</a> - OS X preference pane for environment variables. <a href="https://github.com/hschmidt/EnvPane"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://github.com/onmyway133/FinderGo">FinderGo</a> - Open terminal quickly from Finder. <a href="https://github.com/onmyway133/FinderGo"><img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></p></li>
<li><p><a href="https://johnste.github.io/finicky/">Finicky</a> - Application that allows you to set up rules that decide which browser is opened for every link that would open the default browser. <a href="https://github.com/johnste/finicky"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/2ndalpha/gasmask">Gas Mask</a> - Simple hosts file manager for Mac OS X. <a href="https://github.com/2ndalpha/gasmask"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://macpaw.com/gemini">Gemini</a> - Intelligent duplicate file finder.</p></li>
<li><p><a href="https://ridiculousfish.com/hexfiend/">Hex Fiend</a> - Fast and clever open source hex editor. <a href="https://github.com/ridiculousfish/HexFiend/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/hex-fiend/id1342896380"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></p></li>
<li><p><a href="https://github.com/specialunderwear/Hosts.prefpane">Hosts.prefpane</a> - System preference pane to manage your hosts file. <a href="https://github.com/specialunderwear/Hosts.prefpane"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://en.toolinbox.net/iHosts/">iHosts</a> - The only <code>/etc/hosts</code> editor on Mac App Store. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/id1102004240?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></p></li>
<li><p><a href="http://peacockmedia.software/mac/integrity/free.html">Integrity</a> - Free website link checker for Mac. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://www.kaleidoscopeapp.com/">Kaleidoscope</a> - Powerful compare tool for text, images and folders. Works perfectly with git, svn or other version control tools.</p></li>
<li><p><a href="http://koala-app.com">Koala</a> - GUI application for Less, Sass, Compass and CoffeeScript compilation. <a href="https://github.com/oklai/koala/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://www.cunningo.com/locastudio/index.html">Loca Studio</a> - Analyze, review, and edit app translations. Supports Xcode Localization Catalog (xcloc) and XLIFF 1.2 file formats. <a href="https://apps.apple.com/app/id1465684707"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></p></li>
<li><p><a href="https://github.com/kaunteya/MacSystemColors">MacSystemColors</a> - Mac app that shows all system colors in light and dark mode for Cocoa developers. <a href="https://github.com/kaunteya/MacSystemColors"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://mjmlio.github.io/mjml-app/">MJML</a> - Framework that utilizes a semantic syntax and a rich standard components library, which allow users to easily create responsive emails. <a href="https://github.com/mjmlio/mjml"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://www.paintcodeapp.com/">PaintCode</a> - PaintCode is a unique vector drawing app that generates Objective-C or Swift code in real time, acting as a bridge between developers and graphic designers.</p></li>
<li><p><a href="https://github.com/sindresorhus/Pasteboard-Viewer">Pasteboard Viewer</a> - Inspect the system pasteboards. <a href="https://github.com/sindresorhus/Pasteboard-Viewer"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/id1499215709"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></p></li>
<li><p><a href="https://github.com/jkpang/PPRows">PPRows</a> - Application to calculate how many lines of code you write. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/jkpang/PPRows"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></p></li>
<li><p><a href="https://pushmate.app">PushMate</a> PushMate is a MacOS app that solves common push notification problems by ensuring your push payloads are correct.</p></li>
<li><p><a href="https://responsively.app">Responsively</a> - A must-have devtool for web developers for quicker responsive web development. <a href="https://github.com/responsively-org/responsively-app"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/scmbreeze/scm_breeze">SCM Breeze</a> - Set of shell scripts (for bash and zsh) that enhance your interaction with git. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/scmbreeze/scm_breeze"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></p></li>
<li><p><a href="https://www.vandyke.com/products/securecrt/">SecureCRT</a> - Terminal emulation which supports SSH, Telnet or other protocols.</p></li>
<li><p><a href="https://ricks-apps.com/osx/sitesucker/">Site Sucker</a> - SiteSucker is a Macintosh application that automatically downloads websites from the Internet. <a href="https://itunes.apple.com/in/app/sitesucker/id442168834?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></p></li>
<li><p><a href="https://www.renfei.org/snippets-lab/">SnippetsLab</a> - Easy-to-use code snippets manager.</p></li>
<li><p><a href="http://ethanschoonover.com/solarized">Solarized</a> - Clean and beautiful color theme. Works well with iTerm, JetBrains products, Vim etc.</p></li>
<li><p><a href="http://staruml.io">StarUML</a> - Powerful UML app.</p></li>
<li><p><a href="https://objectivec2swift.com/#/xcode-extension/">Swiftify</a> - Objective-C to Swift code converter and Xcode & Finder extensions.</p></li>
<li><p><a href="https://github.com/MarcoEidinger/SwiftPlantUML-Xcode-Extension">SwiftPlantUML</a> - Generate and view class diagrams from Xcode for Swift code. <a href="https://github.com/MarcoEidinger/SwiftPlantUML-Xcode-Extension"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://oldj.github.io/SwitchHosts/">SwitchHosts</a> - Free and open-source app for hosts management & switching. <a href="https://github.com/oldj/SwitchHosts"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/zqqf16/SYM">SYM</a> - GUI Application to symbolicate iOS crash log. <a href="https://github.com/zqqf16/SYM"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="http://www.texstudio.org">TeXstudio</a> - Integrated writing environment for creating LaTeX documents. <a href="https://sourceforge.net/projects/texstudio/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="http://timelane.tools">Timelane</a> - Visually profile your asynchronous code. <a href="https://github.com/icanzilb/Timelane"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/sindresorhus/touch-bar-simulator">Touch Bar Simulator</a> - Use the Touch Bar on any Mac. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://www.visual-paradigm.com/">Visual Paradigm</a> - All-in-one UML, SysML, BPMN Modeling Platform for Agile, EA TOGAF ADM Process Management.</p></li>
<li><p><a href="http://www.woodpeck.cn">Woodpecker</a> - View iOS app’s Sandbox files, UserDefaults, Keychain items on a Mac. <a href="https://itunes.apple.com/app/woodpecker/id1333548463"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></p></li>
<li><p><a href="https://github.com/insidegui/WWDC">WWDC</a> - The Mac OS unofficial WWDC app. <a href="https://github.com/insidegui/WWDC"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://github.com/RobotsAndPencils/XcodesApp">Xcodes</a> - Install and switch between multiple versions of Xcode. <a href="https://github.com/RobotsAndPencils/XcodesApp"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://www.zeplin.io/">zeplin</a> - Collaboration tool for work between designers and developers. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://apps.apple.com/by/app/nib-unlocker/id1475697086">Nib Unlocker</a> - .nib to .xib converter <a href="https://apps.apple.com/by/app/nib-unlocker/id1475697086?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a> #### Regular Expression Editors</p></li>
<li><p><a href="http://krillapps.com/patterns/">Patterns</a> - Regular expression editor.</p></li>
<li><p><a href="https://motionobj.com/regex/">Regex</a> - Regular expression testing tool with an emphasis on simplicity.</p></li>
<li><p><a href="http://www.mactechnologies.com/index.php?page=downloads#regexrx">RegExRX</a> - Development tool for regular expressions.</p></li>
</ul>
<h4 id="api-development-and-analysis">API Development and Analysis</h4>
<ul>
<li><a href="https://mmattozzi.github.io/cocoa-rest-client/">Cocoa Rest Client</a> - Free, open-source, native Apple OS X app for testing HTTP/REST endpoints. <a href="https://github.com/mmattozzi/cocoa-rest-client"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://insomnia.rest/">Insomnia</a> - The most intuitive cross-platform REST API Client. <a href="https://github.com/getinsomnia/insomnia"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://paw.cloud/">Paw</a> - Advanced HTTP client.</li>
<li><a href="https://www.getpostman.com">Postman</a> - Powerful GUI platform to make your API development faster & easier, from building API requests through testing, documentation and sharing.<img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.katalon.com">Katalon Studio</a> - Simplify API, Web, Mobile Automation Tests Free. Robust. Cross-platform. Automation testers from 160 countries with YouTube channels, GitHub repositories.<img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h4 id="network-analysis">Network Analysis</h4>
<ul>
<li><a href="https://www.charlesproxy.com/">Charles</a> - HTTP proxy / HTTP monitor / Reverse Proxy that enables a developer to view all of the HTTP and SSL / HTTPS traffic between their machine and the Internet.</li>
<li><a href="https://github.com/james-proxy/james">James</a> - Open-source proxy tool for checking and mapping requests with http as well as https. <a href="https://github.com/james-proxy/james"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.obdev.at/products/littlesnitch/download.html">Little Snitch</a> - Network monitor with a world map for visualizing network connections.</li>
<li><a href="https://mitmproxy.org/">mitmproxy</a> - Interactive intercepting HTTP proxy for penetration testers and software developers. <a href="https://github.com/james-proxy/james"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://proxieapp.com/">Proxie</a> - HTTP debugging proxy. <a href="https://itunes.apple.com/app/cellist/id897814548"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://proxyman.app">Proxyman</a> - Modern and intuitive HTTP debugging proxy for macOS. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.wireshark.org">Wireshark</a> - The world’s foremost and widely-used network protocol analyzer. <a href="https://github.com/wireshark/wireshark"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h4 id="command-line-tools">Command Line Tools</h4>
<blockquote>
<p><a href="https://github.com/herrbischoff/awesome-macos-command-line#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></p>
</blockquote>
<ul>
<li><p><a href="https://beyondgrep.com">ack</a> - A tool like grep, optimized for programmers. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/jwilm/alacritty">alacritty</a> - A cross-platform, GPU-accelerated terminal emulator. <a href="https://github.com/jwilm/alacritty"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="http://obihann.github.io/archey-osx/">archey-osx</a> - An archey script for OS X. <a href="https://github.com/obihann/archey-osx"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/asciinema/asciinema">asciinema</a> - Easily record terminal sessions and replay them in a terminal as well as in a web browser. <a href="https://github.com/asciinema/asciinema"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/wting/autojump/wiki">autojump</a> - Replace <code>cd</code> with an intelligent autojump to easily navigate directories from the command line. <a href="https://github.com/wting/autojump"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/Bash-it/bash-it">bash-it</a> - Shameless ripoff of oh-my-zsh for bash. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/sharkdp/bat">bat</a> - A <code>cat(1)</code> clone with syntax highlighting and Git integration. <a href="https://github.com/sharkdp/bat"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/jingweno/ccat">ccat</a> - The colorizing cat which works similar to cat but displays content with syntax highlighting. <a href="https://github.com/jingweno/ccat"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://cmus.github.io/">cmus</a> - Small, fast and powerful console music player for Unix-like operating systems. <a href="https://github.com/cmus"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/Swordfish90/cool-retro-term">cool-retro-term</a> - Good looking terminal emulator which mimics the old cathode display. <a href="https://github.com/Swordfish90/cool-retro-term"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://github.com/sindresorhus/dark-mode">dark-mode</a> - Control dark mode from the command-line. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/simeg/eureka">eureka</a> - CLI tool to input and store your ideas without leaving the terminal. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://fishshell.com/">Fish Shell</a> - Smart and user-friendly terminal, which is similar with zsh. <a href="https://github.com/fisherman/awesome-fish-shell#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></p></li>
<li><p><a href="https://github.com/jhspetersson/fselect">fselect</a> - Find files with SQL-like queries. <a href="https://github.com/jhspetersson/fselect"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></p></li>
<li><p><a href="https://github.com/cli/cli">Github CLI</a> - gh is GitHub on the command line. It brings pull requests, issues, and other GitHub concepts to the terminal next to where you are already working with git and your code. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/nicolargo/glances">Glances</a> - Glances is a cross-platform curses-based system monitoring tool. <a href="https://github.com/nicolargo/glances"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://itunes.apple.com/app/go2shell/id445770608?mt=12">Go2Shell</a> - Go2Shell opens a terminal window to the current directory in Finder. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/go2shell/id445770608?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></p></li>
<li><p><a href="https://github.com/hishamhm/htop">htop</a> - htop is an interactive text-mode process viewer for Unix systems. It aims to be a better ‘top’. <a href="https://github.com/hishamhm/htop"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://httpie.org">httpie</a> - Modern command line HTTP client – user-friendly curl alternative with intuitive UI, JSON support, syntax highlighting, wget-like downloads, extensions, etc. <a href="https://github.com/jakubroztocil/httpie"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://hyper.is">hyper</a> - A terminal built on web technologies. <a href="https://github.com/zeit/hyper"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="http://www.iterm2.com">iTerm2</a> - iTerm2 is an amazing terminal emulator for OS X. <a href="https://github.com/gnachman/iTerm2"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/mischah/itunes-remote">itunes-remote</a> - Software for controlling iTunes via the terminal. <a href="https://github.com/mischah/itunes-remote"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/liujianping/job">job</a> - JOB, make your short-term command as a long-term job. <a href="https://github.com/liujianping/job"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/kovidgoyal/kitty">kitty</a> - A cross-platform, fast, feature full, GPU based terminal emulator. <a href="https://github.com/kovidgoyal/kitty"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="http://lnav.org">lnav</a> - A log file navigator. <a href="https://github.com/tstack/lnav"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/rgcr/m-cli">m-cli</a> - Swiss Army Knife for macOS. <a href="https://github.com/rgcr/m-cli"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/guarinogabriel/Mac-CLI">Mac-CLI</a> - The ultimate tool to manage your Mac. Automatize the usage of your OS X system. <a href="https://github.com/guarinogabriel/Mac-CLI"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://magic-wormhole.readthedocs.io/en/latest/">Magic Wormhole</a> - Get Things From One Computer To Another, Safely. <a href="https://github.com/guarinogabriel/Mac-CLI"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/mas-cli/mas">mas</a> - Simple command line interface for the Mac App Store. <a href="https://github.com/mas-cli/mas"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://miller.readthedocs.io/en/latest/">Miller</a> - Like awk, sed, cut, join, and sort for name-indexed data such as CSV, TSV, and tabular JSON. <a href="https://github.com/johnkerl/miller"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/dbcli/mycli">mycli</a> - CLI for MySQL that can do auto-completion and syntax highlighting. <a href="https://github.com/dbcli/mycli"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://720kb.github.io/ndm/">ndm</a> - Manage <a href="http://npmjs.org/">npm</a> straight from the couch. <a href="https://github.com/720kb/ndm"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/nushell/nushell">nushell</a> - nushell is a modern, GitHub-era shell written in Rust. <a href="https://sourceforge.net/projects/zsh/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://www.pgcli.com">pgcli</a> - Pgcli is a command line interface for Postgres with auto-completion and syntax highlighting. <a href="https://github.com/dbcli/pgcli"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/shobrook/rebound/">Rebound</a> - Instantly browse Stack Overflow results in your terminal when you get a compiler error. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://www.decisivetactics.com/products/serial/">Serial</a> - Full-featured serial terminal for the Mac.</p></li>
<li><p><a href="https://github.com/alichtman/shallow-backup">shallow-backup</a> - Easily create text documentation of installed applications, dotfiles, and more. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/ggreer/the_silver_searcher">silver searcher (ag)</a> - A code searching tool similar to ack, with a focus on speed. <a href="https://github.com/ggreer/the_silver_searcher"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/denysdovhan/spaceship-prompt">spaceship</a> - A Zsh prompt for Astronauts. <a href="https://github.com/denysdovhan/spaceship-prompt"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/Eugeny/tabby">Tabby (formerly Terminus)</a> - Free terminal tool, built with TypeScript, heavily inspired by Hyper. <a href="https://github.com/Eugeny/terminus"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/klaussinani/taskbook">Taskbook</a> - Tasks, boards & notes for the command-line habitat. <a href="https://github.com/klaussinani/taskbook"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://www.termius.com/">Termius</a> - Free terminal tool,comparable to xshell on windows platform. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/dinedal/textql">TextQL</a> - Execute SQL against structured text like CSV or TSV. <a href="https://github.com/dinedal/textql"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/nvbn/thefuck">thefuck</a> - A interesting software that corrects errors in previous console commands[<img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" />]</p></li>
<li><p><a href="https://github.com/tmux/tmux">tmux</a> - “Terminal multiplexer”, it enables a number of terminals (or windows) to be accessed and controlled from a single terminal. tmux is intended to be a simple, modern, BSD-licensed alternative to programs such as GNU screen. <a href="https://github.com/tmux/tmux"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></p></li>
<li><p><a href="https://github.com/tmuxinator/tmuxinator">tmuxinator</a> - Manage complex tmux sessions easily. <a href="https://github.com/tmuxinator/tmuxinator"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></p></li>
<li><p><a href="https://github.com/sindresorhus/trash">trash</a> - Move files and directories to the trash. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></p></li>
<li><p><a href="https://visidata.org">VisiData</a> - Terminal spreadsheet multitool for discovering and arranging data. <a href="https://github.com/saulpw/visidata"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://xon.sh/contents.html">xonsh</a> - Python-powered, cross-platform, Unix-gazing shell language and command prompt. <a href="https://sourceforge.net/projects/zsh/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://www.zsh.org">Zsh</a> - Zsh is a shell designed for interactive use, although it is also a powerful scripting language. <a href="https://sourceforge.net/projects/zsh/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/unixorn/awesome-zsh-plugins#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></p></li>
<li><p><a href="https://github.com/RobotsAndPencils/xcodes">xcodes</a> - A command-line tool to install and switch between multiple versions of Xcode. <a href="https://github.com/RobotsAndPencils/xcodes"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://github.com/xxh/xxh">xxh</a> - Bring your favorite shell wherever you go through the SSH. <a href="https://sourceforge.net/projects/zsh/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> #### Frameworks For Hybrid Applications</p></li>
<li><p><a href="http://appjs.com/">AppJS</a> - Lightweight JavaScript UI library for creating mobile webapps that behave like native apps. <a href="https://github.com/appjs/appjs"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://github.com/sindresorhus/create-dmg">create-dmg</a> - Create a good-looking DMG for your macOS app in seconds. <a href="https://github.com/sindresorhus/create-dmg"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/pojala/electrino">Electrino</a> - Desktop runtime for apps built on web technologies, using the system’s own web browser engine. <a href="https://github.com/pojala/electrino"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="http://electron.atom.io">Electron</a> - Build cross platform desktop application with JavaScript, HTML and CSS. <a href="https://github.com/electron/electron"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="http://ionicframework.com/">ionic</a> - Build amazing native and progressive web apps with Angular and open web technologies. One app running on everything. <a href="https://github.com/driftyco/ionic"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="http://macgapproject.github.io/">MacGap</a> - Provides a lightweight JavaScript API for OS X integration, such as displaying native notifications or writing data to a file. <a href="https://github.com/MacGapProject"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="http://nwjs.io">nw.js</a> - Build desktop application with HTML and JavaScript. It lets you call all <code>Node.js</code> modules directly from DOM and enables a new way of writing applications with all Web technologies. <a href="https://github.com/nwjs/nw.js"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="https://www.qt.io">Qt</a> - Cross-platform application framework.</p></li>
<li><p><a href="https://github.com/CanonicalLtd/react-native">React Native for Ubuntu</a> - Build Ubuntu desktop apps using React Native. <a href="https://github.com/CanonicalLtd/react-native"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://github.com/ptmt/react-native-desktop">React Native macOS</a> - Build OS X desktop apps using React Native and Cocoa. <a href="https://github.com/ptmt/react-native-desktop"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></p></li>
<li><p><a href="http://reactdesktop.js.org">react-desktop</a> - React UI Components for macOS Sierra. <a href="https://github.com/gabrielbull/react-desktop"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://microsoft.github.io/reactxp/">ReactXP</a> - Microsoft official production, support platform Web, iOS, Android and Windows UWP is still an ongoing work. <a href="https://github.com/microsoft/reactxp"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
</ul>
<h4 id="version-control">Version Control</h4>
<ul>
<li><a href="http://www.zennaware.com/cornerstone/">Cornerstone</a> - Powerful version control with a gorgeous interface.</li>
<li><a href="https://git-fork.com/">Fork</a> - Fast and friendly Git client for Mac. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://git-cola.github.io/">Git Cola</a> - Powerful, Fast, Lightweight and Friendly Git GUI. For those caffeine adicting users. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></li>
<li><a href="https://github.com/Shikkic/gitbar">Gitbar</a> - Open-source,display Github contribution statistics on your menu bar. <a href="https://github.com/Shikkic/gitbar"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://gitfinder.com/">GitFinder</a> - Fast and lightweight Git client for Mac with Finder integration. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.gitfox.app">Gitfox</a> - Commit faster, improve your code quality with superior diffs - and look good doing it. <a href="https://apps.apple.com/app/gitfox/id1475511261"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://desktop.github.com/">GitHub Desktop</a> - The official GitHub GUI. <a href="https://github.com/desktop/desktop"><img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://www.gitkraken.com/">GitKraken</a> - The most popular Git GUI for Windows, Mac and Linux.</li>
<li><a href="http://gitup.co/">GitUp</a> - A simple & powerful Git client。<a href="https://github.com/git-up/GitUp"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://rowanj.github.io/gitx/">GitX-dev</a> - Fork of <a href="https://github.com/pieter/gitx">Pieter’s</a> nice git GUI for OS X. Includes branch/tag sidebar and various fixes. <a href="https://github.com/rowanj/gitx"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://hub.github.com/">Hub</a> - Command-line wrapper for Git that makes you better at GitHub. <a href="https://github.com/github/hub"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://ohmystarapp.com/">OhMyStar</a> Beautiful and efficient way to manage, explore and share your Github Stars. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/us/app/ohmystar2/id1218642292"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://www.syntevo.com/smartgit/">SmartGit</a> - Git client with support.</li>
<li><a href="https://www.sourcetreeapp.com/">SourceTree</a> - Free Git & Mercurial client for Windows or Mac. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.sublimemerge.com/">Sublime Merge</a> - Git client, from the makers of Sublime Text.</li>
<li><a href="https://www.git-tower.com/">Tower2</a> - The most powerful Git client for Mac and Windows.</li>
<li><a href="https://vershd.io/">Vershd</a> - The free for personal use effortless Git GUI, for Windows, Mac, & Linux. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.versionsapp.com/">Versions</a> - Mac Subversion (SVN) Client.</li>
</ul>
<h4 id="virtualization">Virtualization</h4>
<ul>
<li><a href="https://www.docker.com/">Docker</a> - Powerful, performs operating-system-level virtualization. <a href="https://github.com/docker"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/veggiemonk/awesome-docker#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></li>
<li><a href="http://www.parallels.com/">Parallels</a> - Powerful, easy-to-use VM. No free upgrade for each new Mac OS.</li>
<li><a href="https://www.qemu.org/">QEMU</a> - a free and open-source emulator and virtualizer that can perform hardware virtualization. <a href="https://github.com/qemu/qemu"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.vagrantup.com">Vagrant</a> - Tool for building and distributing development environments. <a href="https://github.com/mitchellh/vagrant"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/iJackUA/awesome-vagrant#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></li>
<li><a href="https://veertu.com">Veertu</a> - The lightest VM on Mac. Responsive, sandboxed & native way to run VM on your Mac. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.virtualbox.org">Virtual Box</a> - Powerful x86 and AMD64/Intel64 virtualization product. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.vmware.com/">VMware Fusion</a> - Powerful, commercial VM developed by VMware.</li>
</ul>
<h4 id="databases">Databases</h4>
<ul>
<li><a href="https://directory.apache.org/studio/">Apache Directory Studio</a> - LDAP browser and Active Directory client. <a href="https://directory.apache.org/sources.html"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://docs.microsoft.com/en-us/sql/azure-data-studio/">Azure Data Studio</a> - Cross-platform database tool for using on Microsoft family on-premises and cloud data platforms such as MSSQL Server <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/qishibo/AnotherRedisDesktopManager">Another Redis Desktop Manager</a> - A faster, better and more stable redis desktop manager.<a href="https://directory.apache.org/sources.html"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a><img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://menial.co.uk/base/">Base 2</a> - Application for creating, designing, editing and browsing SQLite 3 database files.</li>
<li><a href="https://www.beekeeperstudio.io">Beekeeper Studio</a> - Smooth SQL editor and database manager <a href="https://github.com/beekeeper-studio/beekeeper-studio"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/bdash-app/bdash">Bdash</a> - Modern SQL client application, supports MySQL, PostgreSQL (Redshift) and BigQuery.<a href="https://github.com/bdash-app/bdash"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/yoichiro/chrome_mysql_admin">Chrome MySQL Admin</a> - Powerful Chrome app to manage your MySQL. <a href="https://github.com/yoichiro/chrome_mysql_admin"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://github.com/ChristianKienle/Core-Data-Editor">Core Data Editor</a> - Core Data Editor lets you easily view, edit and analyze applications‘ data. <a href="https://github.com/luin/medis"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://sqlitebrowser.org/">DB Browser for SQLite</a> - Official home of the DB Browser for SQLite. <a href="https://github.com/sqlitebrowser/sqlitebrowser"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://dbeaver.io/">DBeaver</a> - Universal SQL Client.</li>
<li><a href="http://garrylachman.github.io/ElectroCRUD/">ElectroCRUD</a> - Modern MySQL CRUD application. <a href="https://github.com/garrylachman/ElectroCRUD"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://fastonosql.com/">FastoNoSQL</a> - Cross-platform GUI client for Redis, Memcached, SSDB, LevelDB, RocksDB, UnQLite, LMDB, ForestDB, Pika and Dynomite key-value databases. <a href="https://github.com/fastogt/fastonosql"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://fastoredis.com/">FastoRedis</a> - Cross-platform professional GUI management tool for Redis. <a href="https://github.com/fastogt/fastoredis"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.jackdb.com/">JackDB</a> - Secure, collaborative environment for your queries and data-driven insights. <a href="https://github.com/yoichiro/chrome_mysql_admin"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://protonail.com">Keylord</a> - Desktop GUI client for Redis, Bolt, LevelDB and Memcached key-value databases.</li>
<li><a href="http://www.macexplorer.co/en/mdb-explorer.php">MDB Explorer</a> - MDB tool to open, read, export your MDB files to other formats and databases.</li>
<li><a href="http://getmedis.com">Medis</a> - GUI Manager for Redis. <a href="https://github.com/luin/medis"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://mingo.io/">Mingo</a> - Easy to use MongoDB GUI with mind-blowing features.</li>
<li><a href="http://www.litixsoft.de/english/mms/">Mongo Management Studio</a> - Simple MongoDB GUI.</li>
<li><a href="https://gcollazo.github.io/mongodbapp/">mongoDB.app</a> - The easiest way to get started with mongoDB on the Mac. <a href="https://github.com/gcollazo/mongodbapp"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://www.mongodb.com">MongoDB</a> - MongoDB is a document database with the scalability and flexibility that you want with the querying and indexing that you need. <a href="https://github.com/gcollazo/mongodbapp"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/ramnes/awesome-mongodb#desktop"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></li>
<li><a href="http://dev.mysql.com/downloads/workbench/">MySQL Workbench</a> - The official MySQL GUI.</li>
<li><a href="https://www.navicat.com/en/products/navicat-data-modeler">Navicat Data Modeler</a> - Powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. <a href="https://itunes.apple.com/app/navicat-data-modeler-essentials-visual-database-designer/id532423082"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://neo4j.com">neo4j</a> - The leading graph database! <a href="https://github.com/neo4j/neo4j"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://pgmodeler.io">pgModeler</a> - is an open source data modeling tool designed for PostgreSQL. <a href="https://github.com/pgmodeler/pgmodeler"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://postgresapp.com/">Postgres.app</a> - The easiest way to get started with PostgreSQL on the Mac. <a href="https://github.com/PostgresApp/PostgresApp"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://eggerapps.at/postico/">Postico</a> - Modern PostgreSQL client for Mac.</li>
<li><a href="http://www.psequel.com/">PSequel</a> - PostgreSQL GUI tool for Mac OS X. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/UUGU/redis-client-app">RedisClient</a> - Redis client application on mac, windows and linux. <a href="https://github.com/UUGU/redis-client-app"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="http://redisdesktop.com">RedisDesktopManager</a> - Cross-platform GUI management tool for Redis. <a href="https://github.com/uglide/RedisDesktopManager"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.sequelpro.com/">Sequel Pro</a> - MySQL database management for Mac OS X. <a href="https://github.com/sequelpro/sequelpro"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://aurvan.com/sqlight/">SQLight</a> - SQLite database manager tool. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.sqlprostudio.com/">SQLPro Studio</a> - Simple, powerful database manager for macOS.</li>
<li><a href="https://public.tableau.com/s/">Tableau Public</a> - Free data-visualization software. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://tableplus.io">TablePlus</a> - Supports: PostgreSQL, MySQL, RedShift, MariaDB… High-end security ensured. <a href="https://github.com/TablePlus/TablePlus"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/cmushroom/redis-pro">redis-pro</a> - Small, easy to use Redis management, written with SwiftUI, support Dark mode. <a href="https://github.com/cmushroom/redis-pro"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h2 id="design-and-product">Design and Product</h2>
<h4 id="design-tools">Design Tools</h4>
<ul>
<li><a href="https://secure.flyingmeat.com/acorn/">Acorn</a> - Great Mac OS X picture and photo editor, built for humans.</li>
<li><a href="https://affinity.serif.com/en-us/designer/">Affinity Designer</a> - Professional graphic design software for Mac.</li>
<li><a href="https://affinity.serif.com/en-us/photo/">Affinity Photo</a> - Professional image editing software for Mac.</li>
<li><a href="http://al.chemy.org/">Alchemy</a> - Experimental, open-source drawing application with an emphasis on creating conceptual art. <a href="http://svn.al.chemy.org/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://amadine.com">Amadine</a> - A vector drawing app that has everything a graphic designer needs wrapped in an uncluttered and intuitive interface.</li>
<li><a href="https://www.belightsoft.com/art-text/">Art Text 3</a> - This is graphic design software specifically tuned for lettering, typography, text mockups and various artistic text effects.</li>
<li><a href="https://www.blender.org/">Blender</a> - Free and open 3D creation software. <a href="https://developer.blender.org/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://colorpicker.crea-th.at">Colorpicker</a> - Colorpicker is a complete open-source colors manipulation tool with picking! <a href="https://github.com/toinane/colorpicker"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.figma.com/">Figma</a> - The collaborative interface design tool, for vector graphics and UI prototyping. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://fontforge.github.io/">FontForge</a> - Free, open-source font editor. <a href="https://github.com/fontforge"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.gimp.org">GIMP</a> - The GNU Image Manipulation Program. <a href="https://www.gimp.org/source/#gimp-source-code"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://designer.io/">Gravit Designer</a> - Full featured free vector design app right at your fingertips. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/id1207744923"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://tenonedesign.com/inklet.php">inklet</a> - Turn your Mac trackpad into drawing board.</li>
<li><a href="https://inkscape.org/en/">Inkscape</a> - Professional vector graphics editor. <a href="https://launchpad.net/inkscape"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://krita.org/en/">Krita</a> - Open-source digital painting software for concept artists, digital painters, and illustrators. <a href="https://github.com/KDE/krita"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://macsvg.org/">macSVG</a> - Designing HTML5 SVG art and animation. <a href="https://github.com/dsward2/macSVG"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://ephtracy.github.io/">MagicaVoxel</a> - Free, lightweight 8-bit voxel editor and interactive path tracing renderer.</li>
<li><a href="http://www.makehumancommunity.org">MakeHuman</a> - Powerful and free 3D human modeler. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://monodraw.helftone.com">Monodraw</a> - Powerful ASCII art editor designed for the Mac. <a href="https://itunes.apple.com/app/monodraw/id920404675"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://nikcollection.dxo.com/">Nik Collection</a> - Nik Collection by DxO.</li>
<li><a href="http://paintbrush.sourceforge.net/">Paintbrush</a> - Bitmap image editor. <a href="https://sourceforge.net/projects/paintbrush/files/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.pencil2d.org">Pencil2D</a> - A easy, intuitive tool to make 2D hand-drawn animations. <a href="https://github.com/pencil2d/pencil"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://pixelperfect-app.com/">Pixel Perfect</a> - Tool to overlay design images over implementation and make it pixel perfect. <a href="https://itunes.apple.com/us/app/pixel-perfect/id916097243"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.pixelmator.com/mac/">Pixelmator</a> - Full-featured image editor for Mac.</li>
<li><a href="http://principleformac.com/">Principle</a> - Application for designing animated and interactive user interfaces.</li>
<li><a href="https://github.com/duyquoc/ScreenToLayers">ScreenToLayers</a>- Easily export your screen into a layered PSD file. <a href="https://github.com/duyquoc/ScreenToLayers"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/screentolayers/id1077317077"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://pixologic.com/sculptris/#">Sculptris</a> - 3D sculpting software. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.sketchapp.com/">Sketch</a> - Professional digital design for mac.
<ul>
<li><a href="https://yo-op.github.io/sketchcachecleaner/">Sketch Cache Cleaner</a> - Deletes hidden Sketch history files that can take a lot of space on your hard drive and that you would probably never use. <a href="https://github.com/yo-op/sketchcachecleaner"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://utom.design/measure/">Measure Plugin</a> - Make it a fun to create spec for developers and teammates. <a href="https://github.com/utom/sketch-measure"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://sketchtoolbox.com/">Sketch Toolbox Plugin Manager</a> - Simple plugin manager for Sketch. <a href="https://github.com/buzzfeed/Sketch-Toolbox"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://abynim.github.io/UserFlows/">User Flows Plugin</a> - Generating flow diagrams from Artboards. <a href="https://github.com/abynim/UserFlows"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul></li>
<li><a href="https://www.sketchbook.com/?locale=en-US">SketchBook</a> - Drawing software for concept design, comic art, and digital sketching. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://sparkleapp.com/">Sparkle</a> - Pro visual web design.</li>
<li><a href="https://github.com/sindresorhus/System-Color-Picker">System Color Picker</a> - The macOS color picker as an app with more features. [<img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" />] <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/id1545870783"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://www.tayasui.com/sketches/">Tayasui Sketches</a> - Professional drawing software.</li>
<li><a href="https://www.vectornator.io/">Vectornator: Design Software</a> - The Most Intuitive and Precise Illustration Software in the Galaxy. <a href="https://apps.apple.com/us/app/vectornator-design-software/id1219074514"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://vectr.com/">Vectr</a> - Free graphics editor used to create vector graphics easily and intuitively. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h4 id="prototyping-and-mind-mapping-tools">Prototyping and Mind-Mapping Tools</h4>
<ul>
<li><a href="http://www.adobe.com/products/experience-design.html">Adobe XD (Experience Design)</a> - First all-in-one cross-platform tool for designing and prototyping websites and mobile apps.</li>
<li><a href="http://www.axure.com">Axure RP 8</a> - Prototypes, specifications and diagrams in one tool.</li>
<li><a href="https://balsamiq.com/products/mockups/">Balsamiq Mockups</a> - Wire-framing tool that helps you work faster and smarter.</li>
<li><a href="https://www.flinto.com/">Flinto</a> - Quickly create interactive prototypes of mobile, desktop, or web apps.</li>
<li><a href="http://framerjs.com/">Framer</a> - Tool for interactive prototyping.</li>
<li><a href="http://www.justinmind.com">Justinmind</a> - Prototyping platform for web and mobile apps.</li>
<li><a href="https://kiteapp.co/">Kite</a> - Powerful animation and prototyping application for Mac & iOS.</li>
<li><a href="http://lighten.xmind.net/">Lighten</a> - The best way to clarify thinking, boost productivity, brainstorm, and visualize concepts.</li>
<li><a href="http://loremify.com">Loremify</a> - Great Lorem ipsum generator.<img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /><a href="https://itunes.apple.com/app/loremify/id1028877632"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://marvelapp.com/">Marvel</a> - Simple design, prototyping and collaboration.<img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://mindnode.com/">MindNode</a> - Mind-mapping software with an emphasis on simplicity and ease-of-use.</li>
<li><a href="https://www.mockflow.com">MockFlow</a> - Online prototyping suite for web-design and usability testing.</li>
<li><a href="http://www.mockplus.com">Mockplus</a> - Prototype faster, smarter and easier.</li>
<li><a href="https://www.omnigroup.com/omnigraffle">OmniGraffle</a> - Diagramming and graphic design for Mac, iPhone, and iPad.</li>
<li><a href="http://origami.design/">Origami Studio</a> - Tool for designing modern interfaces, built and used by designers at Facebook.</li>
<li><a href="http://pencil.evolus.vn/">pencil</a> - Free, open-source tool for making diagrams and GUI prototyping. <a href="https://github.com/evolus/pencil"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.protopie.io/">ProtoPie</a> - Create the most advanced prototypes as easy as Pie.</li>
<li><a href="http://www.literatureandlatte.com/scapple.php">Scapple</a> - Practical mind-mapping software with free whiteboard-like layout.</li>
<li><a href="https://simplemind.eu/">SimpleMind</a> - The world leader in cross platform Mind Mapping tools.</li>
<li><a href="https://writemapper.com/">WriteMapper</a> - Get from idea to final draft in no time.</li>
<li><a href="http://www.xmind.net">XMind</a> - The most popular mind-mapping tool on the planet.</li>
<li><a href="https://www.simplediagrams.com/">Simple Diagrams</a> - A desktop app for creating hand-drawn-like, fast, clear sketches of problems, processes, workflows, ideas and more!</li>
<li><a href="https://www.yworks.com/products/yed">yGraph Editor</a> - High quality diagrams made easy.</li>
</ul>
<h4 id="screencapturing-software">Screencapturing Software</h4>
<ul>
<li><a href="https://getcleanshot.com/">CleanShot</a> - Discover a superior way to capture your Mac’s screen.</li>
<li><a href="https://www.getcloudapp.com/">CloudApp</a> - Work at the speed of sight. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://gifox.io/">Gifox</a> - Gif Recording and Sharing. <a href="https://itunes.apple.com/app/gifox-gif-recording-and-sharing/id1082624744"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://getkap.co/">Kap</a> - Open-source screen-recorder built with web technology. <a href="https://github.com/wulkano/kap"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/keycastr/keycastr">KeyCastr</a> - KeyCastr, an open-source keystroke visualizer. <a href="https://github.com/keycastr/keycastr"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/vishaltelangre/Kyapchar">Kyapchar</a> - Simple screen and microphone audio recorder for Mac. <a href="https://github.com/vishaltelangre/Kyapchar"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.cockos.com/licecap/">Licecap</a> - Record your screen and export to GIF. You can change the recording area anytime during recording. <a href="https://github.com/justinfrankel/licecap"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://app.prntscr.com/">Lightshot</a> - The fastest way to take a customizable screenshot. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://monosnap.com/">Monosnap</a> - Make screenshots. Draw on it. Shoot video and share your files. It’s fast, easy and free. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/monosnap/id540348655"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://txtlabs.com/">ScreenShot PSD</a> - Capture the screen as a layered PSD for easy editing. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/us/app/screenshot-psd/id489880259"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://evernote.com/skitch/">Skitch</a> - Screen capture application with a powerful annotation capabilities. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://snip.qq.com/">Snip</a> - Application for sharing captured images on QQ Mail. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.snipaste.com">Snipaste</a> - Simple but powerful snipping tool. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://teampaper.me/snap/">Teampaper Snap</a> - Let your screenshots speak up. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/monosnap/id1199502670"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://xnipapp.com/">Xnip</a> - Handy Screenshot App. <a href="https://itunes.apple.com/app/xnip-handy-screenshot-app/id1221250572"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.dropbox.com/">Dropbox</a> - Dropbox app offers easy screenshot capturing and sharing <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h4 id="other-tools">Other Tools</h4>
<ul>
<li><a href="https://github.com/mancunianetz/APNGb">APNGb</a> - PNG image assembler/disassembler app. <a href="https://github.com/mancunianetz/APNGb"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://assetizr.com">Assetizr</a> - Resizing images and optimising them for web and mobile applications. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/de/app/assetizr/id1449126727?l=en&mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://couleursapp.com">Couleurs</a> - Simple app for grabbing and tweaking the colors you see on your screen. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://en.eagle.cool/">Eagle App</a> - Simple and intuitive file manager with tag and annotaion for all your design files. Supports all major source, image, RAW, video, 3D, audio, font, and office files.</li>
<li><a href="https://exifcleaner.com">ExifCleaner</a> - Remove exif metadata from images and videos with drag and drop. <a href="https://github.com/szTheory/exifcleaner"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="http://jumpzero.com/frank/">Frank DeLoupe</a> - Color-picking tool, supports Retina.</li>
<li><a href="https://sindresorhus.com/heic-converter">HEIC Converter</a> - Convert HEIC images to JPEG or PNG. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/us/app/heic-converter-to-jpeg-or-png/id1294126402"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://iconset.io">Iconset</a> - Free, cross-platform and fast SVG icon organizer and manager for Mac and Windows.</li>
<li><a href="http://geticonjar.com/">Iconjar</a> - Icon management tool to organize or search your icons.</li>
<li><a href="http://appersian.net/">IconKit</a> - App icon generator. <a href="https://itunes.apple.com/app/iconkit-icon-resizer-for-app/id507135296"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://www.img2icnsapp.com">Image2icon</a> - Create and personalize icons from your pictures. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://pngmini.com/">ImageAlpha</a> - Compress images with PNG format and remove transparency. <a href="https://github.com/pornel/ImageAlpha"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://imageoptim.com/mac">ImageOptim</a> - Compress images and remove EXIF information. <a href="https://github.com/ImageOptim/ImageOptim"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://en.toolinbox.net/iPic/">iPic</a> - Easily upload images with Markdown supported. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/id1101244278?ls=1&mt=12&at=1000lv4R&ct=iPic_me"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://www.jpegmini.com/">JPEGmini</a> - Reduce image size by up to 80%, without compromising quality. <a href="https://itunes.apple.com/app/jpegmini-lite/id525742250"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://getmarkman.com/">Mark Man</a> - Measure & Spec Fast.</li>
<li><a href="https://nucleoapp.com/">Nucleo</a> - Icon manager. Import, export, customize and convert icon libraries.</li>
<li><a href="https://www.presetbrewery.com">Preset Brewery</a> - Tool to convert Lightroom presets to Adobe Camera Raw.</li>
<li><a href="http://www.boltnev.com/resizemaster/">Resize Master</a> - Batch resize and watermark your images fast and easy. <a href="https://itunes.apple.com/app/resize-master/id1025306797"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://rightfontapp.com/">RightFont</a> - Preview, sync, install and manage fonts on Mac, Dropbox or Google Drive.</li>
<li><a href="http://theolabrothers.com/">Sip</a> - The best way to collect, organize & share your colors.</li>
<li><a href="https://www.techsmith.com/snagit.html">Snagit</a> - Simple, Powerful Screen Capture Software and Screen Recorder.</li>
<li><a href="http://www.eigenlogik.com/spectrum/mac">Spectrum</a> - Easily and intuitively creating beautiful color schemes. <a href="https://itunes.apple.com/app/spectrum/id518156125?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://www.svgs.us/">svgus</a> - Organize, clean and transform your SVGs. <a href="https://itunes.apple.com/app/svgsus/id1106867065"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://github.com/kyleduo/TinyPNG4Mac">TinyPNG4Mac</a> - Open-source tool to compress images. <a href="https://github.com/kyleduo/TinyPNG4Mac"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://tropy.org/">Tropy</a> - Research Photo Management. <a href="https://github.com/tropy/tropy"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/Molunerfinn/PicGo">PicGo</a> - Support for common cdn image hosting tool. <a href="https://github.com/Molunerfinn/PicGo"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://itunes.apple.com/app/shotbuilder/id1294179975?mt=12">AppIconBuilder</a> - Export icons for multi-platform<a href="https://itunes.apple.com/app/shotbuilder/id1294179975?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://github.com/gee1k/uPic">uPic</a> - macOS native app, powerful terse image hosting client. <a href="https://github.com/gee1k/uPic"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
</ul>
<h2 id="communication">Communication</h2>
<h4 id="collaboration-and-team-tools">Collaboration and Team Tools</h4>
<ul>
<li><a href="https://adium.im/">Adium</a> - Free instant messaging application for Mac OS X. Connect to AIM, MSN, SMPP, Yahoo and more. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/sindresorhus/caprine">Caprine</a> - Third-party privacy-focused Facebook Messenger app. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.dingtalk.com/en">DingTalk</a> - Free, powerful and professional office tool used by over 5 million enterprises and organizations globally. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://discordapp.com/">Discord</a> - All-in-one voice and text chat for gamers that’s free, secure, and works on both your desktop and phone.</li>
<li><a href="http://meetfranz.com/">Franz</a> - <a href="http://electron.atom.io/">Electron</a> based, multi-protocol wrapper for web-based chat. One application, 23 messenger services. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://gitter.im">Gitter</a> - Instant messaging and chat room system for developers as well as GitHub users. Developer friendly with Markdown syntax support.</li>
<li><a href="https://keybase.io/">Keybase</a> - Secure groups, files, and chat for everyone! <a href="https://github.com/keybase"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://krisp.ai/">Krisp</a> - An AI-powered noise cancelling app that mutes background noise during calls.</li>
<li><a href="http://limechat.net/mac/">LimeChat</a> - Open-source IRC client for Mac OS X. <a href="https://github.com/psychs/limechat"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://fbmacmessenger.rsms.me/">Messenger For Mac</a> - Third-party Facebook messenger for Mac. <a href="https://github.com/rsms/fb-mac-messenger"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://muzzleapp.com/">Muzzle</a> - A simple mac app to silence embarrassing notifications while screensharing.</li>
<li><a href="http://rambox.pro/">Rambox</a> - Messaging and emailing app that combines common web applications into one. <a href="https://github.com/saenzramiro/rambox"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://element.io/">Element</a> - Create, share communicate. Chat and call securely. <a href="https://github.com/vector-im"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://presentify.compzets.com/">Presentify</a> - A mac app to draw on your screen while on calls, highlight your cursor, and more. <img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></li>
<li><a href="https://signal.org/download/">Signal Desktop</a> - Fast, simple, secure. Privacy that fits in your pocket. <a href="https://github.com/signalapp/Signal-Desktop"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://www.skype.com/">Skype</a> - Cross-platform application that provides video chat and voice call services. Users can exchange images, text, video and any other digital documents.</li>
<li><a href="https://tryshift.com/">Shift</a> - De-clutter your desktop workspace and streamline your accounts, apps, and workflows.</li>
<li><a href="https://slack.com/downloads/mac">Slack</a> - Awesome tool for team collaboration and communication. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://getstack.app/">Stack</a> - Open, organize and use multiple web apps on a single screen. Stack your apps by categories or projects.</li>
<li><a href="https://www.teambition.com">Teambition</a> - Team collaboration tool, including many features like task plan, schedule, file sharing, instant discussion and everything you need when collaborating with other team members. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://desktop.telegram.org">Telegram</a> - Messaging app with a focus on speed and security. <a href="https://github.com/overtake/TelegramSwift"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <a href="https://itunes.apple.com/us/app/telegram/id747648890?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.codeux.com/textual">Textual</a> - Internet Relay Chat (IRC) client. <a href="https://github.com/Codeux-Software/Textual"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://itunes.apple.com/app/wechat/id836500024?mt=12">WeChat</a> - Official WeChat app for Mac. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></li>
<li><a href="https://weechat.org/">WeeChat</a> - The extensible command-line chat client. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://itunes.apple.com/us/app/whatsapp-desktop/id1147396723?mt=12">WhatsApp Desktop</a> - Available in the Mac App Store, Whatsapp for Desktop. <img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></li>
</ul>
<h4 id="email-clients">Email Clients</h4>
<ul>
<li><p><a href="http://airmailapp.com">Airmail</a> - Fast email client. For both Mac OS and iOS.</p></li>
<li><p><a href="http://www.foxmail.com/mac/en">Foxmail</a> - Fast email client. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://smallcubed.com/mt/">MailTags</a> - Use tags to organize email and schedule.</p></li>
<li><p><a href="https://www.nylas.com/">N1</a> - Extensible, open-source mail app, free for developers and $7/month for Pro. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></p></li>
<li><p><a href="https://nylas.com/nylas-mail/">Nylas Mail</a> - Extensible desktop mail app built on the modern web. <a href="https://github.com/nylas/nylas-mail"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://polymail.io/">Polymail</a> - Simple, beautiful and powerful email client. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://www.postbox-inc.com">Postbox</a> - Powerful, simple and beautiful email client, need to pay for a license.</p></li>
<li><p><a href="https://sparkmailapp.com/">Spark</a> - Fast email client. For both Mac OS and iOS.<img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://www.mozilla.org/en-US/thunderbird/">ThunderBird</a> - Software that makes email easier. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="https://mail.edison.tech/mac">Edison Mail</a> - A customisable, simple, and beautiful email client. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> #### File Sharing</p></li>
<li><p><a href="https://cyberduck.io">Cyberduck</a> - Free FTP, SFTP, WebDAV, S3, Backblaze B2, Azure and OpenStack Swift browser. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></p></li>
<li><p><a href="http://fivedetails.com/flow/">Flow</a> - Award-winning, beautiful, fast, and reliable FTP + SFTP client.</p></li>
<li><p><a href="https://panic.com/transmit/">Transmit</a> - Highly flexible and intuitive FTP client, supports SFTP, S3 and iDisk/WebDAV.</p></li>
</ul>
<h2 id="data-recovery-tools">Data Recovery Tools</h2>
<ul>
<li><a href="https://www.prosofteng.com/datarescue-mac-data-recovery/">Data Rescue</a> - Comprehensive and professional data recovery tool for most cases.</li>
<li><a href="http://www.alsoft.com/DiskWarrior/">DiskWarrior</a> - The world’s most advanced repair and recovery tool for Mac.</li>
<li><a href="http://www.r-studio.com/data_recovery_macintosh/">R-Studio for Mac</a> - Powerful tool for recovering data on disks, even if their partitions are formatted, damaged or deleted.</li>
<li><a href="https://shirt-pocket.com/SuperDuper/SuperDuperDescription.html">SuperDuper!</a> - Painless fully bootable disk backups.</li>
</ul>
<h2 id="audio-and-video-tools">Audio and Video Tools</h2>
<ul>
<li><a href="https://macroplant.com/adapter">Adapter</a> - Free audio, video and image conversion software. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.aegisub.org/">Aegisub</a> - Free, cross-platform open source tool for creating and modifying subtitles. Aegisub makes it quick and easy to time subtitles to audio, and features many powerful tools for styling them, including a built-in real-time video preview. <a href="https://github.com/Aegisub/Aegisub/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://apps.apple.com/us/app/audio-profile-manager/id1484150558?ls=1&mt=12">Audio Profile Manager</a> - Allows you to pin input/output devices for each particular combination of connected devices. May suppress HDMI displays from being chosen. <a href="https://apps.apple.com/us/app/audio-profile-manager/id1484150558?ls=1&mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://ardour.org/">Ardour</a> - Cross-platform audio software for multi-track recording and editing. <a href="https://github.com/Ardour/ardour"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="http://www.audacityteam.org/">Audacity</a> - Free, open-source, cross-platform audio software for multi-track recording and editing. <a href="https://github.com/audacity/audacity"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="http://www.rogueamoeba.com/audiohijack/">Audio Hijack</a> - Record any application’s audio, including VoIP calls from Skype, web streams from Safari, and much more.</li>
<li><a href="https://github.com/ExistentialAudio/BlackHole">BlackHole</a> - Freemium, open-source virtual output/input audio driver for recording/routing internal audio. <a href="https://github.com/ExistentialAudio/BlackHole"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <a href="https://github.com/ExistentialAudio/BlackHole"><img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://github.com/AnaghSharma/Carol">Carol</a> - A minimal and beautiful lyrics app for macOS. <a href="https://github.com/AnaghSharma/Carol"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://cogx.org/">Cog</a> - Free, open-source audio player. <a href="https://bitbucket.org/mamburu/cog/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://www.blackmagicdesign.com/products/davinciresolve/">DaVinci Resolve</a> - Free, cross-platform video editing, color grading, video effects and audio editing software.</li>
<li><a href="https://mac.eltima.com/media-player.html">Elmedia Player</a> - This media player is a super versatile app for any file format you probably may think of: FLV, MP4, AVI, MOV, DAT, MKV, MP3, FLAC, M4V are all supported as well as many others.</li>
<li><a href="https://github.com/sindresorhus/gifski-app">Gifski</a> - Convert videos to high-quality GIFs. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/no/app/gifski/id1351639930?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://handbrake.fr/">HandBrake</a> - Tool for converting video from nearly any format to a selection of modern, widely supported codecs. <a href="https://github.com/HandBrake/HandBrake"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="http://hydrogen-music.org/">Hydrogen</a> - Professional yet simple and intuitive pattern-based drum programming for GNU/Linux. <a href="https://github.com/hydrogen-music/hydrogen"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://www.ffworks.net/">ffWorks</a> - Comprehensive Media Tool for macOS. Making High Quality Video Encoding Accessible for Everyone.</li>
<li><a href="https://lhc70000.github.io/iina/">IINA</a> - The modern video player for macOS. Based on mpv, the powerful media player project. <a href="https://github.com/lhc70000/iina"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://kodi.tv/">Kodi</a> - Award-winning free and open-source (GPL) software media center for playing videos, music, pictures, games, and more. <a href="https://github.com/xbmc/xbmc"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.lmms.io">LMMS</a> Formerly “Linux MultiMedia Studio”, LMMS is a powerful Digital Audio Workstation designed like FL Studio (formerly Fruity Loops). <a href="https://github.com/lmms/lmms"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/mifi/lossless-cut">LosslessCut</a> - Cross platform tool for quick and lossless video and audio trimming using ffmpeg. <a href="https://github.com/mifi/lossless-cut"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://github.com/ddddxxx/LyricsX">LyricsX</a> - Lyrics for iTunes, Spotify and Vox. <a href="https://github.com/ddddxxx/LyricsX"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <a href="https://itunes.apple.com/us/app/lyricsx/id1254743014?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://markvapps.com/metadatics">Metadatics</a> - Advanced Audio Metadata Editor. <a href="https://itunes.apple.com/us/app/tincta/id448340648"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://mp3tag.app/">Mp3tag</a> - a powerful and easy-to-use tool to edit metadata of audio files. <a href="https://apps.apple.com/app/id1532597159/"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://mixxx.org/">Mixxx</a> - The most advanced free DJ software. <a href="https://github.com/mixxxdj/mixxx"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://evilcult.github.io/moviecatcher/">Movie Catcher</a> - Movie movie and online viewing offline download software, with Baidu cloud to make offline download and online playback. <a href="https://github.com/EvilCult/moviecatcher"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://www.mpv.io/">mpv</a> - Free, open-source, and cross-platform media player. <a href="https://github.com/mpv-player/mpv"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://musescore.org/">MuseScore</a> - Free, open-source music notation software. <a href="https://github.com/musescore/MuseScore"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://natrongithub.github.io/">Natron</a> - Open-source compositing software. Node-graph based. Similar in functionality to Adobe After Effects and Nuke by The Foundry. <a href="https://github.com/MrKepzie/Natron"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="http://perian.org/#download">Perian</a> - (<strong>No longer under active development</strong>) <del>Let QuickTime play all the common formats of free plug-ins</del>. <a href="https://github.com/MaddTheSane/perian"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://mafintosh.github.io/playback/">Playback</a> - Experimental video player. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/mafintosh/playback"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://plugformac.com">Plug</a> - Discover and listen to music from Hype Machine. <a href="https://github.com/wulkano/Plug"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/id1514182074"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://popcorn-time.tw/">Popcorn Time</a> - Watch torrent movies instantly, This Popcorn Time service will never be taken down. Download and enjoy. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.telestream.net/screenflow/">ScreenFlow</a> - Screencasting and video editing software.</li>
<li><a href="https://www.shotcut.org">Shotcut</a> - Free open-source video editor. <a href="https://github.com/mltframework/shotcut"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.sodaplayer.com/">Soda Player</a> - Player that can play seed, magnetic links, online video, automatic captions, links and local video files. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/sonoramac/Sonora">Sonora</a> - Minimal, beautifully designed music player. <a href="https://github.com/sonoramac/Sonora"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://github.com/kmikiy/SpotMenu">SpotMenu</a> - Spotify and iTunes in your menu bar. <a href="https://github.com/kmikiy/SpotMenu"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.stremio.com/">Stremio</a> - Movies, TV shows, series, live television or web channels like YouTube and Twitch.tv - you can find all this on Stremio. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://stringed.buenosapps.com/">Stringed 2</a> - Music practice software designed to help users learn how to play their favorite songs.</li>
<li><a href="http://synfig.org">Synfig Studio</a> - Synfig Studio is free, open-source 2D animation software. <a href="https://github.com/synfig/synfig"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.videolan.org/index.html">VLC</a> - Free, open-source, cross-platform multimedia player as well as framework that plays most multimedia files, DVDs, Audio CDs, VCDs and various streaming protocols. <a href="https://github.com/videolan/vlc"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://vox.rocks/mac-music-player">VOX Player</a> - High-definition audio player for Mac and iPhone. Music just sounds better! <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://tmkk.undo.jp/xld/index_e.html">XLD</a> - Tool to decode, convert and play various ‘lossless’ audio files. <a href="https://code.google.com/archive/p/xld/source"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://musicplus.io">MusicPlus</a> - Search, play & download music for free. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://sindresorhus.com/recordia">Recordia</a> - Record audio directly from the menu bar or with a global keyboard shortcut. <a href="https://apps.apple.com/app/id1529006487"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://okaapps.com/product/1470926410#">Omniplayer</a> - Best media player on Mac, support almost all format. <a href="macappstore://itunes.apple.com/app/id1470926410?pt=119209922&l=en&mt=12&ct=newhomepage"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
</ul>
<h3 id="audio-record-and-process">Audio Record and Process</h3>
<ul>
<li><a href="https://www.apple.com/mac/garageband/">GarageBand</a> A free Digital Audio Workstation (DAW) from Apple,providing a simple interface and professional level audio production functions. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/cn/app/garageband/id682658836?l=zh&ls=1&mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.apple.com/logic-pro/">Logic Pro X</a> A professional Digital Audio Workstation (DAW) from Apple,providing complete audio production functions along with high quality native plugins and soundtracks. With native Apple Silicon support. <a href="https://apps.apple.com/cn/app/logic-pro-x/id634148309?l=zh&mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
</ul>
<h2 id="download-management-tools">Download Management Tools</h2>
<ul>
<li><a href="https://aria2.github.io/">aria2</a> - Lightweight multi-protocol & multi-source command-line download utility. <a href="https://github.com/aria2"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://software.charliemonroe.net/downie.php">Downie</a> - Video downloader for macOS with support for YouTube and other 1200 sites.</li>
<li><a href="https://deluge-torrent.org/">Deluge</a> - Deluge is a lightweight, Free Software, cross-platform BitTorrent client. <a href="https://dev.deluge-torrent.org/wiki/Development"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://mac.eltima.com/download-manager.html">FOLX</a> - Free download manager for Mac OS X with a true Mac-style interface. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.freedownloadmanager.org/">Free Download Manager</a> - Powerful, modern download accelerator and organizer for Windows and Mac. (FREE) <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://jdownloader.org/">JDownloader</a> - Free, open-source download management tool with a huge community of developers that makes downloading as easy and fast as it should be. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></li>
<li><a href="https://motrix.app/">Motrix</a> - Motrix is a full-featured download manager that supports downloading HTTP, FTP, BitTorrent, Magnet, Baidu Net Disk, etc. <a href="https://github.com/agalwood/Motrix"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.qbittorrent.org/">qBittorrent</a> - A project aims to provide an open-source software alternative to µTorrent. <a href="https://github.com/qbittorrent/qBittorrent"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://fiplab.com/apps/download-shuttle-for-mac">Shuttle</a> - Easy Download Manager for any links.</li>
<li><a href="https://www.transmissionbt.com/">Transmission</a> - Fast, easy, free BitTorrent Client. <a href="https://github.com/transmission/transmission"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://you-get.org/">You-Get</a> - Tiny command-line utility to download media contents (videos, audios, images) from the web. <a href="https://github.com/soimort/you-get"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/rg3/youtube-dl/">youtube-dl</a> - Command-line program to download videos from YouTube.com and other video sites <a href="https://github.com/rg3/youtube-dl/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h2 id="cloud-storage">Cloud Storage</h2>
<p><em>I recommend using online storage with Mac clients</em></p>
<ul>
<li><a href="https://www.arqbackup.com/">Arq</a> - Cloud storage backup client that supports AWS, GCP, DropBox, and more.</li>
<li><a href="https://www.carbonite.com/learn/how-to-backup-mac/">Carbonite</a> - Carbonite can protect your Mac from all of the most common forms of data loss.</li>
<li><a href="https://www.dropbox.com/">Dropbox</a> - File hosting service that offers cloud storage and file synchronization with collaborative edit features. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://mega.nz">Mega</a> - Free cloud service, offers 50GB free storage. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://nextcloud.com/">NextCloud</a> - Actively maintained fork of ownCloud, faster and completely open-source <a href="https://github.com/nextcloud"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://owncloud.org">ownCloud</a> - Cloud storage.</li>
<li><a href="https://www.seafile.com/">Seafile</a> - Reliable and High Speed File Sync and Share.<img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h2 id="input-methods">Input Methods</h2>
<ul>
<li><a href="https://github.com/utatti/kawa">Kawa</a> - Better input source switcher for OS X. <a href="https://github.com/utatti/kawa"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://matthewpalmer.net/rocket/">Rocket</a> - Makes typing emoji faster and easier using Slack-style shortcuts. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/lessmess-dev/touch-emoji">Touch Emoji</a> - emoji picker for MacBook Pro Touch Bar. <a href="https://github.com/lessmess-dev/touch-emoji"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://www.houdah.com/type2Phone/">Type2Phone</a> - Use Your Mac as Keyboard for iPhone, iPad & Apple TV. <a href="https://itunes.apple.com/app/type2phone-bluetooth-keyboard/id472717129"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
</ul>
<h2 id="browsers">Browsers</h2>
<ul>
<li><a href="https://brave.com/">Brave</a> - Web browser with an emphasis on privacy and speed. <a href="https://github.com/brave/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.google.com/chrome/">Chrome</a> - Chrome, developed by Google <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.chromium.org/Home">Chromium</a> - Open-source, free web browser project by Google, to provide the source code for Google Chrome. <a href="https://chromium.googlesource.com/chromium/src/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://www.microsoft.com/edge">Microsoft Edge</a> — Microsoft Edge, based on Chromium, but built by MS <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.firefox.com/">Firefox</a> - Meet Firefox Quantum. Fast, free, open-source web browser developed by the Mozilla Foundation. <a href="https://hg.mozilla.org/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://www.apple.com/safari/">Safari</a> - Native browser for Macs. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/learn-anything/safari-extensions#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></li>
<li><a href="https://www.torproject.org/projects/torbrowser.html">TorBrowser</a> - Anonymity Online. Protect your privacy. Defend against network surveillance and traffic analysis. <a href="https://gitweb.torproject.org/tor-browser.git"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://vivaldi.com">Vivaldi</a> - The browser that puts you in control. <a href="https://vivaldi.com/source"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h2 id="translation-tools">Translation Tools</h2>
<p><em>(Or you could just use the Mac OS built-in dictionary)</em></p>
<ul>
<li><a href="https://app.grammarly.com/">Grammarly</a> - Refine your english</li>
<li><a href="http://www.itranslate.com/">iTranslate</a> - Translate entire website instantly with its built-in browser or with iTranslate Safari extension into over 40 languages. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://ludwig.guru">Ludwig</a> - Linguistic search engine that helps you to write better in English.</li>
<li><a href="https://gikken.co/mate-translate/mac">Mate Translate</a> - Translate in Safari and any app on macOS between 103 languages.</li>
<li><a href="https://translatium.app">Translatium</a> - Translate words, phrases and images between over 100 languages with dictionary, transliteration and voice output support. <a href="https://github.com/webcatalog/translatium-desktop"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <a href="https://itunes.apple.com/us/app/translatium/id1547052291"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
</ul>
<h2 id="encryption">Encryption</h2>
<ul>
<li><a href="https://github.com/alichtman/deadbolt">Deadbolt</a> - The easiest file encryption tool you’ll ever use. macOS-compatible, and open-source so you can trust it. <a href="https://github.com/alichtman/deadbolt"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h2 id="security-tools">Security Tools</h2>
<ul>
<li><a href="https://cleanerone.trendmicro.com/antivirus-one-for-mac/?utm_source=github&utm_medium=referral&utm_campaign=githubproject">Antivirus One</a> - Trusted Mac Security Protection: Protect your Mac from viruses, malware and adware. Block potential web threats and protect your Mac against vulnerabilities.<img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/apple-store/id1068435535?pt=444218&ct=GitHub&mt=8"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://objective-see.com/products/blockblock.html">BlockBlock</a> - Me: “Please alert me whenever anything is persistently installed.” BlockBlock: “You got it”</li>
<li><a href="https://objective-see.com/products/dhs.html">Dylib Hijack Scanner</a> - Simple utility that will scan your computer for applications that are either susceptible to dylib hijacking or have been hijacked.</li>
<li><a href="https://objective-see.com/products/kextviewr.html">KextViewer</a> - View all modules on that are loaded in the OS kernel.</li>
<li><a href="https://objective-see.com/products/knockknock.html">KnockKnock</a> - See what’s persistently installed on your Mac.</li>
<li><a href="http://halo.github.io/LinkLiar">LinkLiar</a> - Link-Layer MAC spoofing GUI for macOS. <a href="https://github.com/halo/LinkLiar"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://objective-see.com/products/lockdown.html">LockDown</a> - Open-source tool for El Capitan that audits and remediates security configuration settings. <a href="https://bitbucket.org/objective-see/lockdown"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://objective-see.com/products/lulu.html">LuLu</a> - is the free macOS firewall that aims to block unauthorized (outgoing) network traffic. <a href="https://www.tinc-vpn.org/git/browse?p=tinc"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.malwarebytes.com/mac-download/">MalwareBytes</a> - Malwarebytes crushes the growing threat of Mac malware, so you are protected and your machine keeps running silky smooth. Cybersecurity smart enough for the Mac. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.manasecurity.com/">Mana Security</a> - vulnerability management app for individuals. <a href="https://github.com/manasecurity/mana-security-app"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://objective-see.com/products/oversight.html">OverSight</a> - Monitor mic and webcam, alerting you when the internal mic is activated, or whenever a process accesses the webcam.</li>
<li><a href="https://paretosecurity.com/">ParetoSecurity</a> - A MenuBar app to automatically audit your Mac for basic security hygiene. <a href="https://github.com/ParetoSecurity/pareto-mac"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://objective-see.com/products/ransomwhere.html">RansomWhere?</a> - Generic Ransomware Detection.</li>
<li><a href="https://github.com/alichtman/stronghold">stronghold</a> - Easily configure MacOS security settings from the terminal. <a href="https://github.com/alichtman/stronghold"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://objective-see.com/products/taskexplorer.html">TaskExplorer</a> - Explore all processes running on your Mac with TaskExplorer.</li>
<li><a href="https://objective-see.com/products/whatsyoursign.html">What’s Your Sign?</a> - Adds menu item to Finder.app to display the cryptographic signing information for any file.</li>
</ul>
<h2 id="proxy-and-vpn-tools">Proxy and VPN Tools</h2>
<ul>
<li><a href="https://github.com/trailofbits/algo">Algo</a> - Personal IPSEC VPN in the cloud. <a href="https://github.com/trailofbits/algo"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://www.tigervpn.com/vpn-for-mac">tigerVPN</a> - VPN Client for Mac. <a href="https://apps.apple.com/us/app/vpn-plus/id1202726435"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://getlantern.org">Lantern</a> - Free application that delivers fast, reliable and secure access to the open internet. <a href="https://github.com/getlantern/lantern"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://github.com/qiuyuzhou/ShadowsocksX-NG">ShadowsocksX-NG</a> - Next generation of ShadowsocksX. <a href="https://github.com/qiuyuzhou/ShadowsocksX-NG"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="http://shadowsocks.org/">ShadowsocksX</a> - Secure socks5 proxy, designed to protect your internet traffic. <a href="https://github.com/shadowsocks/shadowsocks"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://www.shimovpn.com/">Shimo</a> - VPN Client for Mac.</li>
<li><a href="https://github.com/zhuhaow/SpechtLite">SpechtLite</a> - Rule-based proxy app for macOS. <a href="https://github.com/shadowsocks"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://nssurge.com/">Surge</a> - Web developer tool and proxy utility for iOS 9. <a href="https://itunes.apple.com/us/app/surge-web-developer-tool-proxy/id1040100637"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.tinc-vpn.org">tinc</a> - Secure mesh VPN software. <a href="https://www.tinc-vpn.org/git/browse?p=tinc"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.tunnelbear.com">Tunnelbear</a> - Really simple VPN to browse the web privately & securely. Unblock websites around the world with applications for Mac, PC, iOS, Android & Chrome.</li>
<li><a href="https://tunnelblick.net/downloads.html">Tunnelblick</a> - Free, open-source graphic user interface for OpenVPN on OS X. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/yanue/V2rayU">V2rayU</a> - Macos client based on v2ray. <a href="https://github.com/yanue/V2rayU"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://windscribe.com">Windscribe</a> - Gives 10gb per month free on the spot and gives limited(on free) location control. Connection also takes very less time.</li>
<li><a href="https://github.com/yichengchen/clashX">ClashX</a> - A rule based proxy For Mac base on Clash. <a href="https://github.com/yichengchen/clashX"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a><img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h2 id="utilities">Utilities</h2>
<h4 id="clipboard-tools">Clipboard Tools</h4>
<ul>
<li><a href="http://www.clipmenu.com">ClipMenu</a> - Clipboard manager for Mac OS X. <a href="https://github.com/naotaka/ClipMenu"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://clipy-app.com/">Clipy</a> - Clipy is a Clipboard extension app for macOS. Based on ClipMenu. <a href="https://github.com/Clipy/Clipy"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://hluk.github.io/CopyQ">CopyQ</a> - Clipboard Manager with Advanced Features. <a href="https://github.com/hluk/CopyQ"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://en.toolinbox.net/iPaste">iPaste</a> - Lightweight and efficient clipboard tool. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/id1056935452?ls=1&mt=12&at=1000lv4R&ct=iPaste_me"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://pasteapp.me">Paste</a> - Smart clipboard history & snippets manager. <a href="https://itunes.apple.com/us/app/paste-clipboard-history-manager/id967805235"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://tapbots.com/pastebot/">PasteBot</a> - Powerful clipboard manager. <a href="https://itunes.apple.com/us/app/pastebot/id1179623856"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://github.com/TermiT/Flycut">Flycut</a> - Clean and simple clipboard manager for developers. <a href="https://github.com/TermiT/Flycut"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://maccy.app/">Maccy</a> - Lightweight clipboard manager for macOS. <a href="https://github.com/p0deje/Maccy"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://yippy.mattdavo.com/">Yippy</a> - Clipboard manager with user-friendly UI. <a href="https://github.com/mattDavo/Yippy"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h4 id="menu-bar-tools">Menu Bar Tools</h4>
<ul>
<li><a href="https://anvilformac.com/">Anvil</a> - Anvil is a beautiful menubar app for managing local websites. Serve up static sites and Rack apps with simple URLs and zero configuration. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.macbartender.com">Bartender</a> - Organize or hide menu bar icons on your Mac.</li>
<li><a href="https://github.com/beardedspice/beardedspice">BeardedSpice</a> - Allows you to control web based media players (SoundCloud, YouTube, etc) and some native apps with the media keys on Mac keyboards. <a href="https://github.com/beardedspice/beardedspice"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://getbitbar.com/">BitBar</a> - Place the output from any script or program right in your Mac OS X menu bar. <a href="https://github.com/matryer/bitbar"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://sindresorhus.com/dato">Dato</a> - A better menu bar clock with calendar, events, and time zones. <a href="https://apps.apple.com/us/app/dato/id1470584107"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://github.com/Mortennn/Dozer">Dozer</a> - Hide MacOS menubar items. <a href="https://github.com/Mortennn/Dozer"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://adelmaer.com/eyetimer">Eye Timer</a> - Take Breaks to prevent Eye Strain timer for Mac. <a href="https://apps.apple.com/us/app/eye-timer/id1485856873"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://github.com/dwarvesf/hidden">Hidden</a> - A ultra-light MacOS utility that helps hide menu bar icons. <a href="https://github.com/dwarvesf/hidden"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://apps.apple.com/gb/app/hue-in-the-menu/id1534707384">Hue in the Menu</a> - Philips Hue light management in the menu bar with multi-room support. <a href="https://apps.apple.com/gb/app/hue-in-the-menu/id1534707384"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/Moneypulation/iGlance">iGlance</a> - macOS System Monitor for the Status Bar. <a href="https://github.com/Moneypulation/iGlance"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <a href="https://github.com/Moneypulation/iGlance"><img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://www.mowglii.com/itsycal/">Itsycal</a> - Tiny calendar for your Mac’s menu bar. <a href="https://github.com/sfsam/itsycal"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://meetingbar.onrender.com">MeetingBar</a> - Menu bar app for your calendar meetings <a href="https://github.com/leits/MeetingBar"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://sindresorhus.com/pandan">Pandan</a> - Time awareness in your menu bar. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/id1569600264"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://github.com/jamieweavis/streaker">Streaker</a> - GitHub contribution streak tracking menubar app. <a href="https://github.com/jamieweavis/streaker"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://github.com/swiftbar/SwiftBar/">SwiftBar</a> - Powerful macOS menu bar customization tool. <a href="https://github.com/swiftbar/SwiftBar/"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://sindresorhus.com/utc-time">UTC Time</a> - Show the time in UTC in the menu bar or a widget. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/id1538245904"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://vanilla.matthewpalmer.net">Vanilla</a> - Hide menu bar icons on your Mac. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://sindresorhus.com/jiffy">Jiffy</a> - Discover and share the best GIFs on GIPHY. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/id1502527999"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://github.com/niteoweb/work-hours-mac">Work Hours</a> - Simple app that tracks your work hours from the menu bar. <a href="https://github.com/niteoweb/work-hours-mac"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://xbarapp.com/">Xbar</a> - Put the output from any script or program into your macOS Menu Bar (the BitBar reboot). <a href="https://github.com/matryer/xbar"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
</ul>
<h4 id="file-organization-tools">File Organization Tools</h4>
<ul>
<li><a href="https://macitbetter.com/">BetterZip</a> - Archive tool supports ZIP, TAR, TGZ, TBZ, TXZ (new), 7-ZIP, RAR.</li>
<li><a href="http://ezip.awehunt.com">eZip</a> - An easy to use, feature-rich archiver for macOS. Supports popular formats such as RAR, ZIP, 7Z, BZ2, GZ etc. Works great with Mojave dark-mode and QuickLook. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.fileside.app">Fileside</a> - A modern, tiling file manager with unlimited panes.</li>
<li><a href="https://www.noodlesoft.com">Hazel</a> - Automated file organization for your Mac. Responsibly and beautifully designed.</li>
<li><a href="https://www.keka.io">Keka</a> - file archiver for macOS. Compression: 7Z, ZIP, TAR, GZIP, BZIP2, XZ LZIP, DMG, ISO. Extraction: 7Z, ZIP, RAR, TAR, GZIP, BZIP2, XZ, LZIP, DMG, ISO, LZMA, EXE, CAB, WIM, PAX, JAR, APK, APPX, CPGZ, CPIO. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/keka/id470158793"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://www.mucommander.com">muCommander</a> - Lightweight file manager with a dual-pane interface. <a href="https://github.com/mucommander/mucommander"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/JulianKahnert/PDF-Archiver">PDF Archiver</a> - Nice tool for tagging and archiving tasks. <a href="https://github.com/JulianKahnert/PDF-Archiver"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <a href="https://itunes.apple.com/app/pdf-archivar/id1352719750"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://theunarchiver.com/">The Unarchiver</a> - Unarchive many different kinds of archive files. <a href="https://bitbucket.org/kosovan/theunarchiver"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://cleanerone.trendmicro.com/unarchiver-one/?utm_source=github&utm_medium=referral&utm_campaign=githubproject">Unarchive One</a> - Quickly decompress multiple different types of compressed files/compressed files to various scene compression formats. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/apple-store/id1127253508?pt=444218&ct=GitHub&mt=8"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
</ul>
<h4 id="general-tools">General Tools</h4>
<ul>
<li><a href="http://www.airserver.com/Download">AirServer</a> - Most advanced screen mirroring software receiver for Mac, PC and Xbox One.</li>
<li><a href="http://www.controlplaneapp.com/">ControlPlane</a> - Manages configuration profiles for your Mac. Determines where you are or what you are doing based on a number of available evidence sources and then automatically reconfigures your Mac based on your preferences. <a href="https://github.com/dustinrue/ControlPlane"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/greenboxal/dns-heaven">DNS Heaven</a> - Unifies macOS DNS so applications using glibc can resolve DNS with the native stack. Mainly for use with VPNs. <a href="https://github.com/greenboxal/dns-heaven"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/Melvin-Abraham/Google-Assistant-Unofficial-Desktop-Client">Google Assistant (Unofficial Desktop Client)</a> - A cross-platform desktop client for Google Assistant based on Google Assistant SDK. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/rlxone/Equinox">Equinox</a> - Create dynamic wallpapers for macOS. <img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/us/app/equinox-create-wallpaper/id1591510203"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://www.httrack.com">HTTrack</a> - Useful tool for downloading a whole website and offline browsing. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://sindresorhus.com/lungo">Lungo</a> - Prevent your Mac from going to sleep. <a href="https://apps.apple.com/us/app/lungo/id1263070803"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://github.com/kaunteya/MacCacheCleaner">Mac Cache Cleaner</a> - Cache cleaner for Mac <a href="https://github.com/kaunteya/MacCacheCleaner"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://getmanta.app/">Manta</a> - Flexible invoicing desktop app with beautiful & customizable templates. <a href="https://github.com/hql287/Manta"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://memo-app.net/">Memo</a> - Simple and elegant app. Unlock memos even more quickly using Touch ID. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/id1212409035"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://numi.io/">Numi</a> - Beautiful calculator app for Mac. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://sindresorhus.com/plash">Plash</a> - Make any website your desktop wallpaper. <a href="https://github.com/sindresorhus/Plash"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/us/app/plash/id1494023538"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://github.com/dteoh/SlowQuitApps">SlowQuitApps</a> - An OS X app that adds a global delay of 1 second to the Cmd-Q shortcut. <a href="https://github.com/dteoh/SlowQuitApps"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://sindresorhus.com/speediness">Speediness</a> - Check your internet speed. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/id1596706466"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://web.archive.org/web/20190515060747/https://coffeeboo.itch.io/sweeper">Torimori Sweeper</a> - MacOS app that lets you declutter your Downloads, one file at a time. <a href="https://coffeeboo.itch.io/sweeper"><img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://github.com/Swift-open-source/UltraTabSaver">Ultra TabSaver</a> - The Open Source Tab Manager for Safari <a href="https://github.com/Swift-open-source/UltraTabSaver"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
</ul>
<h4 id="to-do-lists">To-Do Lists</h4>
<ul>
<li><a href="http://www.2doapp.com/">2Do</a> - Nice todo app.</li>
<li><a href="http://www.shauninman.com/archive/2016/10/20/day_o_2_mac_menu_bar_clock">Day-O 2</a> - Menu bar clock replacement with built-in calendar. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://flexibits.com/fantastical">Fantastical</a> - The calendar app you won’t be able to live without.</li>
<li><a href="https://masterbuilders.io">Focus</a> - Beautiful pomodoro-based time manager. <a href="https://itunes.apple.com/us/app/focus-productivity-timer/id777233759?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://focusedwork.app">Focused Work: Focus Timer</a> - A simple, flexible Focus Timer. <a href="https://apps.apple.com/us/app/focused-work-focus-timer/id1523968394?uo=4"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://todo.microsoft.com/">Microsoft To-Do</a> - Microsoft’s successor to Wunderlist. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/de/app/microsoft-to-do/id1274495053?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://nozbe.com">Nozbe</a> - Powerful GTD app for individuals and teams, with support for every Apple device (Mac, iPhone, iPad, Watch). <a href="https://itunes.apple.com/pl/app/nozbe-tasks-projects-team/id508957583?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.omnigroup.com/omnifocus/">OmniFocus</a> - Nice GTD app, made by OmniGroups.</li>
<li><a href="https://super-productivity.com">Super Productivity</a> - Cross-platform todo list app with integrated Timeboxing and time tracking capabilities. <a href="https://github.com/johannesjo/super-productivity"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/cn/app/super-productivity/id1482572463?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.taskade.com">Taskade</a> - Real-time collaborative editor for teams.</li>
<li><a href="https://www.taskpaper.com/">TaskPaper</a> - Plain text to-do lists.</li>
<li><a href="https://culturedcode.com/things/">Things</a> - Delightful and easy to use task manager. (<strong>Award-winning App</strong>)</li>
<li><a href="https://todoist.com/mac">Todoist</a> - Cross-platform todo list app. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/us/app/todoist-to-do-list-tasks/id585829637?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://tomato2.app">Tomato 2</a> - Beautiful and simple Pomodoro timer. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/us/app/tomato-2-pomodoro-timer/id1494210770?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://ticktick.com/">TickTick</a> - Simple and effective to-do list and task manager that helps you organize all aspects of life. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/id966085870"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
</ul>
<h4 id="productivity">Productivity</h4>
<ul>
<li><a href="https://1440app.com/">1440 Minutes Left Today</a> - Keep a track of how many minutes you have left until the day is over, right in your menu bar. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/us/app/1440/id1483764819"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.alfredapp.com/">Alfred</a> - Award-winning app which boosts efficiency with hotkeys, keywords, text expansion and more. Search your Mac and the web, and be more productive with custom actions to control your Mac. <a href="https://github.com/learn-anything/alfred-workflows#readme"><img src="https://jaywcjlove.github.io/sb/ico/min-awesome.svg" title="Awesome List" alt="Awesome List" /></a></li>
<li><a href="https://folivora.ai/">BetterTouchTool</a> - Great, feature-packed app that allows you to configure many gestures for your Magic Mouse, Macbook Trackpad, Magic Trackpad and also Mouse Gestures for normal mice.</li>
<li><a href="https://www.choosyosx.com">Choosy</a> - UI, URL API and a browser extension set for managing rules where and how to open links.</li>
<li><a href="https://clovery.app">Clovery</a> - Integrate all your favorite Google services tightly with your Mac, let you access these services quickly and work more productively. <a href="https://github.com/webcatalog/neutron"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <a href="https://apps.apple.com/us/app/clovery-for-google-apps/id1552618413"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.plentycom.jp/en/cursorsense/index.html">CursorSense</a> - Mouse & trackpad driver that lets you tweak the acceleration curve and more.</li>
<li><a href="https://aptonic.com">Dropzone</a> - Create a popup grid of customizable actions. Scriptable in Ruby & Python.</li>
<li><a href="http://www.hammerspoon.org/">Hammerspoon</a> - Tool for powerful OSX automation with the Lua scripting engine. <a href="https://github.com/Hammerspoon/hammerspoon"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/niw/HapticKey/releases">HapticKey</a> - A simple utility application for MacBook with Touch Bar that triggers a haptic feedback when tapping Touch Bar. <a href="https://github.com/niw/HapticKey"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://hazeover.com">HazeOver</a> App that dims your background app windows so you can focus more on your main task! <a href="https://apps.apple.com/ph/app/hazeover-distraction-dimmer/id430798174?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://zhengying.github.io/hungrymark">Hungrymark</a> - Useful app to bookmark your files, folders, and webs, quick access your bookmarks through menu bar <a href="https://apps.apple.com/us/app/hungrymark/id1482778901?l=en&mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://icmd.app">iCMD</a> - Fuzzy menubar search and vim/easymotion emulation which works globally for every native MacOS app.</li>
<li><a href="https://pqrs.org/osx/karabiner/">Karabiner</a> - Powerful and stable keyboard customizer for OS X. <a href="https://github.com/tekezo/Karabiner"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="http://www.keyboardmaestro.com">Keyboard Maestro</a> - Automate routine actions based on triggers from keyboard, menu, location, added devices, and more.</li>
<li><a href="http://keytty.com">Keytty</a> - App to keep your hands on the keyboard. Move, click, scroll, drag and more with a few strokes.</li>
<li><a href="https://www.lazy-app.com/">Lazy</a> - Keyboard-driven commands to manage your surroundings directly from your mac.</li>
<li><a href="https://mos.caldis.me/">Mos</a> - Simple tool can offer the smooth scrolling and reverse the mouse scrolling direction on your Mac. <a href="https://github.com/Caldis/Mos"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://mouseless.app/">Mouseless</a> - Master all of the magic keystrokes for your favorite apps & tools.</li>
<li><a href="https://www.omnigroup.com/omniplan/">OmniPlan</a> - The best way to visualize, maintain, and simplify your projects. Project Management made easy.</li>
<li><a href="https://qotoqot.com/qbserve/">Qbserve</a> - Time tracking automation: freelance project tracking, timesheets, invoicing & real-time productivity feedback.</li>
<li><a href="https://raycast.com">Raycast</a> - Raycast lets you control your tools with a few keystrokes. It’s designed to keep you focused.</li>
<li><a href="https://www.rescuetime.com/">RescueTime</a> - Personal analytics service that shows you how you spend your time and provides tools to help you be more productive.</li>
<li><a href="http://sensible-side-buttons.archagon.net">SensibleSideButtons</a> – Use the side buttons on your mouse to move forward and backward in many apps, like in Windows. <a href="https://github.com/archagon/sensible-side-buttons"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://www.nearnorthsoftware.com/software/screenshots.php">nnScreenshots</a> - a super easy way to keep a visual record of your productivity to make it easier to fill out timesheets or just to help you review the day. Built in timesheet editor.</li>
<li><a href="https://github.com/koekeishiya/skhd">skhd</a> - Simple hotkey daemon for macOS. <a href="https://github.com/koekeishiya/skhd"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://khrykin.github.io/strategr/">Strategr</a> – No-fuss time management app. Stategr helps you maximize your productivity, giving you the quickest and most effective way to time-box your day. <a href="https://github.com/khrykin/StrategrDesktop"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://www.dejal.com/timeout/">Time Out</a> - Easy break reminders, with micro-break and flexible customization if you want it. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/us/app/time-out-break-reminders/id402592703?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://timingapp.com/">Timing</a> - Automatic time and productivity tracking for Mac. Helps you stay on track with your work and ensures no billable hours get lost if you are billing hourly.</li>
<li><a href="https://trello.com">Trello</a> - A collaboration tool that organizes your projects into Kanban boards.<img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /><a href="https://itunes.apple.com/app/trello/id1278508951?ls=1&mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://scripts.sil.org/ukelele">Ukelele</a> - Unicode Keyboard Layout Editor.</li>
<li><a href="http://xscopeapp.com/">xScope</a> - Powerful set of tools that are ideal for measuring, inspecting & testing on-screen graphics and layouts.</li>
<li><a href="https://github.com/rupa/z">Z</a> - Powerful way to navigate easily by typing only a string of directory name in terminal instead of typing exact location of director.</li>
<li><a href="https://github.com/jet8a/pomodoro-cycle-app">Pomodoro Cycle</a> - Pomodoro tracker</li>
</ul>
<h4 id="window-management">Window Management</h4>
<ul>
<li><a href="https://alt-tab-macos.netlify.app">AltTab</a> - Open source window switcher with window previews. <a href="https://github.com/lwouis/alt-tab-macos"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="http://ianyh.com/amethyst/">Amethyst</a> - Tiling window manager. <a href="https://github.com/ianyh/Amethyst"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://contexts.co/">contexts</a> - Provides more power than the native Mac Dock. Especially when you have multiple screens, it can help you switch more quickly.</li>
<li><a href="http://mizage.com/divvy/">Divvy</a> - Window management at its finest with its amazing Divvy Grid system.</li>
<li><a href="https://hummingbirdapp.site/">Hummingbird</a> - Easily move and resize windows without mouse clicks, from anywhere within a window.</li>
<li><a href="https://mightymac.app/intellidock/">IntelliDock</a> - Hides the Dock, Automatically.</li>
<li><a href="http://magnet.crowdcafe.com/">Magnet</a> - Window manager that keeps your workspace organized. <a href="https://itunes.apple.com/us/app/id441258766"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://manytricks.com/moom/">Moom</a> - Allows you to easily move and zoom windows, or to another display—using either the mouse or the keyboard.</li>
<li><a href="https://lowtechguys.com/rcmd/">rcmd</a> - Use the <kbd>⌘ Right Command</kbd> key to switch applications based on their name. <a href="https://apps.apple.com/us/app/rcmd-app-switcher/id1596283165"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://rectangleapp.com">Rectangle</a> - Window management app based on Spectacle, written in Swift. <a href="https://github.com/rxhanson/Rectangle"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/fikovnik/ShiftIt">ShiftIt</a> - Managing window size and position in OSX. <a href="https://github.com/fikovnik/ShiftIt"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://www.irradiatedsoftware.com/sizeup/">SizeUp</a> - Powerful, keyboard-centric window management.</li>
<li><a href="https://github.com/jigish/slate">Slate</a> - Window management application similar to Divvy and SizeUp (except better and free!). (<strong>Needs config file</strong>) <a href="https://github.com/jigish/slate"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="http://totalspaces.binaryage.com/">Total Spaces</a> - Provides window management much like ubuntu. Creates hotkeys for workspaces which allows you to easily move around.</li>
<li><a href="https://github.com/koekeishiya/yabai">yabai</a> - Tiling window manager for macOS. A rewrite of chunkwm, it provides a more seamless integration with the operating system. <a href="https://github.com/koekeishiya/yabai/wiki"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
</ul>
<h4 id="password-management">Password Management</h4>
<ul>
<li><a href="https://1password.com/">1Password</a> - Cross-platform password management tool.</li>
<li><a href="https://authy.com">Authy</a> - Two-factor authentication token manager that backs up and syncs across your devices. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://bitwarden.com">Bitwarden</a> - Open source password management tool for Mac OS, iOS and browsers. <a href="https://github.com/bitwarden"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://buttercup.pw/">Buttercup</a> - The Password Manager You Deserve <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.dashlane.com">Dashlane</a> - Cloud-based password manager with award-winning design. <a href="https://itunes.apple.com/us/app/dashlane-password-manager/id552383089"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.enpass.io/">Enpass</a> - Cross-platform password management tool with cloud integration. <a href="https://itunes.apple.com/us/app/enpass-password-manager/id455566716"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://keeweb.info/">Keeweb</a> - Free, cross-platform password manager compatible with KeePass. <a href="https://github.com/keeweb/keeweb"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://keepassxc.org/">KeepassXC</a> - Free, open source, cross-platform password manager. <a href="https://github.com/keepassxreboot/keepassxc"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://lastpass.com/">LastPass</a> - Password management tool for Mac OS and browser.</li>
<li><a href="https://macpass.github.io/">MacPass</a> - Open-source KeePass Mac OS client. <a href="https://github.com/mstarke/MacPass"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://safe-in-cloud.com/en/">SafeInCloud</a> - Cross Platform password management, low cost app! <a href="https://itunes.apple.com/app/safeincloud-password-manager/id883070818"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://strongboxsafe.com/">Strongbox</a> - Secure Password Management for iOS and MacOS. Open Source. Compatible with KeePass and Password Safe. <a href="https://github.com/strongbox-password-safe/Strongbox"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <a href="https://apps.apple.com/us/app/strongbox/id1270075435?mt=12"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
</ul>
<h4 id="finder-tools">Finder Tools</h4>
<ul>
<li><a href="https://fman.io">fman</a> - The first dual-pane file manager to integrate features from Sublime Text.</li>
<li><a href="http://binarynights.com/forklift/">ForkLift</a> - The most advanced dual pane file manager and file transfer client for macOS.</li>
<li><a href="http://www.cocoatech.com/pathfinder/">Path Finder</a> - File management app.</li>
<li><a href="https://qspace.awehunt.com">QSpace</a> - A clean and efficient Multi-view File Manager. <a href="https://apps.apple.com/us/app/id1469774098"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://totalfinder.binaryage.com/">TotalFinder</a> - Chrome-styled Finder substitute.</li>
<li><a href="https://www.trankynam.com/xtrafinder/">XtraFinder</a> - Adds tabs and cut to Mac Finder. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h4 id="quality-of-life-improvements">Quality of Life Improvements</h4>
<ul>
<li><a href="https://github.com/sindresorhus/Actions">Actions</a> - Provides many useful actions for the Shortcuts app. [<img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" />] <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/id1586435171"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://www.mediaatelier.com/CheatSheet/">CheatSheet</a> - Hold the ⌘-Key to get a list of all active shortcuts of the current application. It’s as simple as that. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://justgetflux.com/">f.lux</a> - Makes the color of your computer’s display adapt to the time of day. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://lunar.fyi/">Lunar</a> - Help you adujst brightness, contrast and volumn of your external display. <a href="https://github.com/alin23/Lunar"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://grayscalemode.com/">Grayscale Mode</a> - An open source macOS app that lets you quickly toggle grayscale filter right from your menu bar or using a keyboard shortcut (⌥⌘G). <a href="https://github.com/rkbhochalya/grayscale-mode"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/keycastr/keycastr">KeyCastr</a> - Open-source keystroke visualizer. <a href="https://github.com/keycastr/keycastr"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://nightowl.kramser.xyz/">NightOwl</a> - Automatically switch between macOS Mojave’s light and dark themes by time of day or with a menu bar or keyboard shortcut. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://fireball.studio/oneswitch">One Switch</a> - Mac menu bar app that adds various switches to the Mac’s menu bar.</li>
<li><a href="http://shifty.natethompson.io">Shifty</a> - A macOS menu bar app that gives you more control over Night Shift. <a href="https://github.com/thompsonate/Shifty"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="http://indragie.com/snap">Snap</a> - Launch an app in a snap. Ridiculously easy shortcut management. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/app/id418073146"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://sindresorhus.com/shareful">Shareful</a> - Supercharge the system share menu with copy, save, and open actions. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/id1522267256"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
</ul>
<h4 id="system-related-tools">System Related Tools</h4>
<ul>
<li><a href="https://itunes.apple.com/us/app/amphetamine/id937984704">Amphetamine</a> - Override your energy saver settings and keep your Mac awake. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://itunes.apple.com/us/app/amphetamine/id937984704"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://cleanerone.trendmicro.com/ad-block-one-for-mac/?utm_source=github&utm_medium=referral&utm_campaign=githubproject">AdBlock One</a> - Your New Favorite Free Ad Blocker for macOS and iOS: Stop seeing annoying ads in Safari. Open websites faster. Browse the web more safely.<img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/apple-store/id1491889901?pt=444218&ct=GitHub&mt=8"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="http://freemacsoft.net/appcleaner/">AppCleaner</a> - Small application which allows you to thoroughly uninstall unwanted apps. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://doesitarm.com/apple-silicon-app-test/">Apple Silicon App Test</a> - Browser-based tool for checking Apple Silicon app compatibility before you buy an M1 Mac. <a href="https://github.com/ThatGuySam/doesitarm"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/kyleneideck/BackgroundMusic">Background Music</a> - Automatically pause your music, set individual apps’ volumes and record system audio. <a href="https://github.com/kyleneideck/BackgroundMusic"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="https://apps.apple.com/app/apple-store/id1133028347?pt=444218&ct=GitHub&mt=8">Cleaner One</a> - All-in-one Disk Cleaning Manager: Clean up your Mac and optimize its performance. Run a quick scan now to verify what’s taking up your storage. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://apps.apple.com/app/apple-store/id1133028347?pt=444218&ct=GitHub&mt=8"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://github.com/waylybaye/XcodeCleaner">Cleaner for Xcode</a> - Helps make your Xcode faster by removing unwanted and deprecated files. <a href="https://github.com/waylybaye/XcodeCleaner"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.coconut-flavour.com/coconutbattery/">coconutBattery</a> - Shows live information about the battery in your Mac. Includes: manufacture date, capacity, cycle count, battery status, temperature, discharging power.</li>
<li><a href="https://coolantformac.com">Coolant</a> - Menubar app that lets you know when an app is consuming 100% CPU or more than a gigabyte of memory (or any arbitrary limits you choose).</li>
<li><a href="https://daisydiskapp.com/">DaisyDisk</a> - Gives a great overview of disk usage. Can also make more disk-space available by cleaning up your disk.</li>
<li><a href="http://fruitjuiceapp.com">FruitJuice</a> - Will let you know how long to stay unplugged each day to keep your battery healthy. <a href="https://itunes.apple.com/app/fruitjuice-battery-health/id671736912"><img src="https://jaywcjlove.github.io/sb/ico/min-app-store.svg" title="App Store Software" alt="App Store" /></a></li>
<li><a href="https://gfx.io/">gfxCardStatus</a> - Unobtrusive menu bar app for OS X that allows MacBook Pro users to see which apps are affecting their battery life by using the more power-hungry graphics. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/zenangst/Gray">Gray</a> - Pick between the light appearance and the dark appearance on a per-app basis with the click of a button. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /> <a href="https://github.com/zenangst/Gray"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="http://www.smartisan.com/apps/handshaker">HandShaker</a> - Mac on the management of Android mobile phone content. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="http://zythum.sinaapp.com/youkuhtml5playerbookmark/">HTML5 Player</a> - HTML 5 video player. Keep your Mac from “burning”.</li>
<li><a href="https://bjango.com/mac/istatmenus/">iStat Menus</a> - Advanced Mac system monitor on the menubar.</li>
<li><a href="https://github.com/Chris911/iStats">iStats</a> - Command-line tool that allows you to easily grab the CPU temperature, fan speeds and battery information on OSX. <a href="https://github.com/Chris911/iStats"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://github.com/brianmichel/Juice">Juice</a> - Make your battery information a bit more interesting. <a href="https://github.com/brianmichel/Juice"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://github.com/newmarcel/KeepingYouAwake">KeepingYouAwake</a> - Alternative to Caffeine with better support for dark mode in Mac. <a href="https://github.com/newmarcel/KeepingYouAwake"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a></li>
<li><a href="http://www.monityapp.com/">Monity</a> - System monitoring widget for OS X.</li>
<li><a href="http://enjoygineering.com/mounty/">Mounty</a> - Tiny tool to re-mount write-protected NTFS volumes under Mac OS X 10.9+ in read-write mode. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://nitroshare.net/">NitroShare</a> - Cross-platform network file transfer utility. <a href="https://github.com/nitroshare/nitroshare-desktop"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://noti.center/">Noti</a> - Receive Android notifications on your Mac (with Pushbullet). <a href="https://github.com/jariz/Noti"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.omnigroup.com/more">OmniDiskSweeper</a> - Shows you the files on your drive, ordered by size. It can be used to find and remove unused files. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.titanium-software.fr/en/onyx.html">OnyX</a> - Multifunction utility to verify disks and files, run cleaning and system maintenance tasks, configure hidden options and more. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.paragon-software.com/home/ntfs-mac/">Paragon NTFS</a> - Read/write access to NTFS in macOS Sierra.</li>
<li><a href="http://portingkit.com/">Porting Kit</a> - Install Windows® Games inside your Mac. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://sensei.app/">Sensei</a> - Sensei is a multi-tool for Mac performance, with features spanning across both hardware and software.</li>
<li><a href="https://codinn.com/products/ssh-tunnel/">SSH Tunnel</a> - Application for managing SSH connections.</li>
<li><a href="https://www.tunabellysoftware.com/tgpro/">TG Pro</a> - Temperature monitoring, fan control & hardware diagnostics to help keep your Mac cool and healthy.</li>
<li><a href="http://www.tuxera.com/products/tuxera-ntfs-for-mac/">Tuxera NTFS</a> - Full read-write compatibility with NTFS-formatted drives on a Mac.</li>
<li><a href="https://github.com/KrauseFx/overkill-for-mac">Overkill</a> - Stop iTunes from opening when you connect your iPhone.</li>
</ul>
<h2 id="gaming-software">Gaming Software</h2>
<ul>
<li><a href="http://openemu.org/">OpenEmu</a> - A great video game console emulator, supports many different emulators in a single application. (e.g. Sony PSP, GameBoy, NDS and so on) <a href="https://github.com/OpenEmu/OpenEmu"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
<li><a href="https://www.ppsspp.org">PPSSPP</a> - A awesome PSP emulator for any OS you can dream of! <a href="https://github.com/hrydgard/ppsspp"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></a></li>
</ul>
<h2 id="remote-login-software">Remote Login Software</h2>
<ul>
<li><a href="https://rustdesk.com/">RustDesk</a> - Yet another remote desktop software. <a href="https://github.com/rustdesk/rustdesk"><img src="https://jaywcjlove.github.io/sb/ico/min-oss.svg" title="Open Source Software" alt="Open-Source Software" /></a> <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://anydesk.com">AnyDesk</a> - Provides Remote access across multiple machines.</li>
<li><a href="https://apps.apple.com/us/app/microsoft-remote-desktop/id1295203466">Microsoft Remote Desktop</a> - Connect to a remote PC or virtual apps and desktops made available by your admin. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.realvnc.com">RealVNC</a> - The original and best software for remote access across desktop and mobile.</li>
<li><a href="https://www.royalapps.com/ts/mac/features">RoyalTSX</a> - Royal TSX is an ideal tool for system engineers and other IT professionals who need remote access to system with different protocols. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
<li><a href="https://www.teamviewer.com/en">TeamViewer</a> - Proprietary computer software package for remote control, desktop sharing, online meetings, web conferencing and file transfer between computers. <img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>
<h2 id="social-networking">Social Networking</h2>
<ul>
<li><a href="https://arguiot.com/Chirper/">Chirper</a> - A simple and tiny menu bar app for Buffer/Twitter that helps you tweet your thoughts without opening anything.</li>
<li><a href="https://flumeapp.com">Flume</a> - A beautiful Instagram experience for your Mac. The free version is good enough if you only want to do the browsing instead of posting.<img src="https://jaywcjlove.github.io/sb/ico/min-free.svg" title="Freeware" alt="Freeware" /></li>
</ul>