-
Notifications
You must be signed in to change notification settings - Fork 2
/
brewt_all.txt
1965 lines (1318 loc) · 88 KB
/
brewt_all.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
abseil C++ Common Libraries
|__ https://abseil.io
ack Search tool like grep, but optimized for programmers
|__ https://beyondgrep.com/
adwaita-icon-theme Icons for the GNOME project
|__ https://developer.gnome.org
aicommit AI-powered commit message generator
|__ https://github.com/coder/aicommit
ampl-mp Open-source library for mathematical programming
|__ https://www.ampl.com/
julien040/anyquery/anyquery Anyquery is a query engine that allows
| you to query anything over SQL.
|__ https://anyquery.dev
aom Codec library for encoding and decoding AV1 video streams
|__ https://aomedia.googlesource.com/aom
apache-arrow Columnar in-memory analytics layer designed to accelerate big data
|__ https://arrow.apache.org/
aribb24 Library for ARIB STD-B24, decoding JIS
| 8 bit characters and parsing MPEG-TS
|__ https://code.videolan.org/jeeb/aribb24
asciidoc Formatter/translator for text files to numerous formats
|__ https://asciidoc-py.github.io/
asio Cross-platform C++ Library for asynchronous programming
|__ https://think-async.com/Asio
aspell Spell checker with better logic than ispell
|__ http://aspell.net/
assimp Portable library for importing many well-known 3D model formats
|__ https://www.assimp.org/
astro To build and run Airflow DAGs locally
| and interact with the Astronomer API
|__ https://www.astronomer.io/
at-spi2-core Protocol definitions and daemon for D-Bus at-spi
|__ https://www.freedesktop.org/wiki/Accessibility/AT-SPI2
atkmm@2.28 Official C++ interface for the ATK accessibility toolkit library
|__ https://www.gtkmm.org/
autoconf Automatic configure script builder
|__ https://www.gnu.org/software/autoconf/
automake Tool for generating GNU Standards-compliant Makefiles
|__ https://www.gnu.org/software/automake/
autotrace Convert bitmap to vector graphics
|__ https://autotrace.sourceforge.io
aws-sdk-cpp AWS SDK for C++
|__ https://github.com/aws/aws-sdk-cpp
awscli Official Amazon AWS command-line interface
|__ https://aws.amazon.com/cli/
b3sum Command-line implementation of the
| BLAKE3 cryptographic hash function
|__ https://github.com/BLAKE3-team/BLAKE3
bash Bourne-Again SHell, a UNIX command interpreter
|__ https://www.gnu.org/software/bash/
bat Clone of cat(1) with syntax highlighting and Git integration
|__ https://github.com/sharkdp/bat
bdw-gc Garbage collector for C and C++
|__ https://www.hboehm.info/gc/
beancount Double-entry accounting tool that works on plain text files
|__ https://beancount.github.io/
berkeley-db High performance key/value database
|__ https://www.oracle.com/database/technologies/related/berkeleydb.html
berkeley-db@5 High performance key/value database
|__ https://www.oracle.com/database/technologies/related/berkeleydb.html
blake3 C implementation of the BLAKE3 cryptographic hash function
|__ https://github.com/BLAKE3-team/BLAKE3
blis BLAS-like Library Instantiation Software Framework
|__ https://github.com/flame/blis
boost Collection of portable C++ source libraries
|__ https://www.boost.org/
boxes Draw boxes around text
|__ https://boxes.thomasjensen.com/
broot New way to see and navigate directory trees
|__ https://dystroy.org/broot/
brotli Generic-purpose lossless compression algorithm by Google
|__ https://github.com/google/brotli
btop Resource monitor. C++ version and
| continuation of bashtop and bpytop
|__ https://github.com/aristocratos/btop
buku Powerful command-line bookmark manager
|__ https://github.com/jarun/buku
bzip2 Freely available high-quality data compressor
|__ https://sourceware.org/bzip2/
c-ares Asynchronous DNS library
|__ https://c-ares.org/
ca-certificates Mozilla CA certificate store
|__ https://curl.se/docs/caextract.html
cabal-install Command-line interface for Cabal and Hackage
|__ https://www.haskell.org/cabal/
cairo Vector graphics library with cross-device output support
|__ https://cairographics.org/
cairomm@1.14 Vector graphics library with cross-device output support
|__ https://cairographics.org/cairomm/
calc Arbitrary precision calculator
|__ http://www.isthe.com/chongo/tech/comp/calc/
cbc Mixed integer linear programming solver
|__ https://github.com/coin-or/Cbc
ceres-solver C++ library for large-scale optimization
|__ http://ceres-solver.org/
certifi Mozilla CA bundle for Python
|__ https://github.com/certifi/python-certifi
cffi C Foreign Function Interface for Python
|__ https://cffi.readthedocs.io/en/latest/
cfitsio C access to FITS data files with optional Fortran wrappers
|__ https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html
cgif GIF encoder written in C
|__ https://github.com/dloebl/cgif
cgl Cut Generation Library
|__ https://github.com/coin-or/Cgl
cgrep Context-aware grep for source code
|__ https://github.com/awgn/cgrep
cheat Create and view interactive cheat sheets for *nix commands
|__ https://github.com/cheat/cheat
chicken Compiler for the Scheme programming language
|__ https://www.call-cc.org/
choose-rust Human-friendly and fast alternative to cut and (sometimes) awk
|__ https://github.com/theryangeary/choose
chroma General purpose syntax highlighter in pure Go
|__ https://github.com/alecthomas/chroma
cjson Ultralightweight JSON parser in ANSI C
|__ https://github.com/DaveGamble/cJSON
cloc Statistics utility to count lines of code
|__ https://github.com/AlDanial/cloc/
clog Colorized pattern-matching log tail utility
|__ https://taskwarrior.org/docs/clog/
clp Linear programming solver
|__ https://github.com/coin-or/Clp
cmake Cross-platform make
|__ https://www.cmake.org/
coinutils COIN-OR utilities
|__ https://github.com/coin-or/CoinUtils
colordiff Color-highlighted diff(1) output
|__ https://www.colordiff.org/
colortail Like tail(1), but with various colors for specified output
|__ https://github.com/joakim666/colortail
comby Tool for changing code across many languages
|__ https://comby.dev
coreutils GNU File, Shell, and Text utilities
|__ https://www.gnu.org/software/coreutils/
cortex Long term storage for Prometheus
|__ https://cortexmetrics.io/
cppad Differentiation of C++ Algorithms
|__ https://www.coin-or.org/CppAD
cryptography Cryptographic recipes and primitives for Python
|__ https://cryptography.io/en/latest/
crystal Fast and statically typed, compiled language with Ruby-like syntax
|__ https://crystal-lang.org/
crystal-icr Interactive console for Crystal programming language
|__ https://github.com/crystal-community/icr
csview High performance csv viewer for cli
|__ https://github.com/wfxr/csview
csvlens Command-line csv viewer
|__ https://github.com/YS-L/csvlens
csvtomd CSV to Markdown table converter
|__ https://github.com/mplewis/csvtomd
daemonize Run a command as a UNIX daemon
|__ https://software.clapper.org/daemonize/
dapr/tap/dapr-cli Client for Dapr.
|__ https://dapr.io
dasel JSON, YAML, TOML, XML, and CSV query and modification tool
|__ https://github.com/TomWright/dasel
dasht Search API docs offline, in your terminal or browser
|__ https://sunaku.github.io/dasht
datasette Open source multi-tool for exploring and publishing data
|__ https://docs.datasette.io/en/stable/
dateutils Tools to manipulate dates with a focus on financial data
|__ https://www.fresse.org/dateutils/
dav1d AV1 decoder targeted to be small and fast
|__ https://code.videolan.org/videolan/dav1d
dbus Message bus system, providing inter-application communication
|__ https://wiki.freedesktop.org/www/Software/dbus
desktop-file-utils Command-line utilities for working with desktop entries
|__ https://wiki.freedesktop.org/www/Software/desktop-file-utils/
detach Execute given command in detached process
|__ http://inglorion.net/software/detach/
detox Utility to replace problematic characters in filenames
|__ https://detox.sourceforge.net/
dialog Display user-friendly message boxes from shell scripts
|__ https://invisible-island.net/dialog/
diff-pdf Visually compare two PDF files
|__ https://vslavik.github.io/diff-pdf/
diff-so-fancy Good-lookin' diffs with diff-highlight and more
|__ https://github.com/so-fancy/diff-so-fancy
diffoscope In-depth comparison of files, archives, and directories
|__ https://diffoscope.org
diffr LCS based diff highlighting tool to
| ease code review from your terminal
|__ https://github.com/mookid/diffr
difftastic Diff that understands syntax
|__ https://github.com/Wilfred/difftastic
direnv Load/unload environment variables based on $PWD
|__ https://direnv.net/
docbook Standard XML representation system for technical documents
|__ https://docbook.org/
docbook-xsl XML vocabulary to create presentation-neutral documents
|__ https://github.com/docbook/xslt10-stylesheets
docker Pack, ship and run any application as a lightweight container
|__ https://www.docker.com/
docker-completion Bash, Zsh and Fish completion for Docker
|__ https://www.docker.com/
docker-compose Isolated development environments using Docker
|__ https://docs.docker.com/compose/
docutils Text processing system for reStructuredText
|__ https://docutils.sourceforge.io
docx2txt Converts Microsoft Office docx
| documents to equivalent text documents
|__ https://docx2txt.sourceforge.net/
doitlive Replay stored shell commands for live presentations
|__ https://doitlive.readthedocs.io/en/latest/
dory Development proxy for docker
|__ https://github.com/freedomben/dory
dotenv-linter Lightning-fast linter for .env files written in Rust
|__ https://dotenv-linter.github.io
dotnet .NET Core
|__ https://dotnet.microsoft.com/
double-conversion Binary-decimal and decimal-binary routines for IEEE doubles
|__ https://github.com/google/double-conversion
dsq CLI tool for running SQL queries against
| JSON, CSV, Excel, Parquet, and more
|__ https://github.com/multiprocessio/dsq
muesli/tap/duf Disk Usage/Free Utility
|__ https://fribbledom.com/
dupseek Interactive program to find and remove duplicate files
|__ http://www.beautylabs.net/software/dupseek.html
dust More intuitive version of du in rust
|__ https://github.com/bootandy/dust
dwdiff Diff that operates at the word level
|__ https://os.ghalkes.nl/dwdiff.html
ebook-tools Access and convert several ebook formats
|__ https://sourceforge.net/projects/ebook-tools/
ecl Embeddable Common Lisp
|__ https://ecl.common-lisp.dev
edencommon Shared library for Watchman and Eden projects
|__ https://github.com/facebookexperimental/edencommon
eigen C++ template library for linear algebra
|__ https://eigen.tuxfamily.org/
ejabberd XMPP application server
|__ https://www.ejabberd.im
elixir Functional metaprogramming aware language built on Erlang VM
|__ https://elixir-lang.org/
enchant Spellchecker wrapping library
|__ https://rrthomas.github.io/enchant/
envoy Cloud-native high-performance edge/middle/service proxy
|__ https://www.envoyproxy.io/index.html
epsilon Powerful wavelet image compressor
|__ https://sourceforge.net/projects/epsilon-project/
eralchemy Simple entity relation (ER) diagrams generation
|__ https://github.com/eralchemy/eralchemy
erlang Programming language for highly scalable real-time systems
|__ https://www.erlang.org/
espeak Text to speech, software speech synthesizer
|__ https://espeak.sourceforge.net/
expat XML 1.0 parser
|__ https://libexpat.github.io/
expect Program that can automate interactive applications
|__ https://core.tcl-lang.org/expect/index
eza Modern, maintained replacement for ls
|__ https://github.com/eza-community/eza
fann Fast artificial neural network library
|__ https://sourceforge.net/projects/fann/
fasttext Library for fast text representation and classification
|__ https://fasttext.cc
fb303 Thrift functions for querying information from a service
|__ https://github.com/facebook/fb303
fbthrift Facebook's branch of Apache Thrift, including a new C++ server
|__ https://github.com/facebook/fbthrift
fd Simple, fast and user-friendly alternative to find
|__ https://github.com/sharkdp/fd
fern-api Stripe-level SDKs and Docs for your API
|__ https://buildwithfern.com/
ffmpeg Play, record, convert, and stream audio and video
|__ https://ffmpeg.org/
ffmpeg@6 Play, record, convert, and stream audio and video
|__ https://ffmpeg.org/
fftw C routines to compute the Discrete Fourier Transform
|__ https://fftw.org
fizz C++14 implementation of the TLS-1.3 standard
|__ https://github.com/facebookincubator/fizz
flac Free lossless audio codec
|__ https://xiph.org/flac/
fmt Open-source formatting library for C++
|__ https://fmt.dev/
folly Collection of reusable C++ library artifacts developed at Facebook
|__ https://github.com/facebook/folly
fontconfig XML-based font configuration API for X Windows
|__ https://wiki.freedesktop.org/www/Software/fontconfig/
foreman Manage Procfile-based applications
|__ https://ddollar.github.io/foreman/
fping Scriptable ping program for checking if multiple hosts are up
|__ https://fping.org/
freetds Libraries to talk to Microsoft SQL Server and Sybase databases
|__ https://www.freetds.org/
freetype Software library to render fonts
|__ https://www.freetype.org/
freexl Library to extract data from Excel .xls files
|__ https://www.gaia-gis.it/fossil/freexl/index
frei0r Minimalistic plugin API for video effects
|__ https://frei0r.dyne.org/
fribidi Implementation of the Unicode BiDi algorithm
|__ https://github.com/fribidi/fribidi
frum Fast and modern Ruby version manager written in Rust
|__ https://github.com/TaKO8Ki/frum/
fswatch Monitor a directory for changes and run a shell command
|__ https://github.com/emcrisostomo/fswatch
fx Terminal JSON viewer
|__ https://fx.wtf
fzf Command-line fuzzy finder written in Go
|__ https://github.com/junegunn/fzf
gawk GNU awk utility
|__ https://www.gnu.org/software/gawk/
gcc GNU compiler collection
|__ https://gcc.gnu.org/
gd Graphics library to dynamically manipulate images
|__ https://libgd.github.io/
gdal Geospatial Data Abstraction Library
|__ https://www.gdal.org/
gdbm GNU database manager
|__ https://www.gnu.org.ua/software/gdbm/
gdk-pixbuf Toolkit for image loading and pixel buffer manipulation
|__ https://gtk.org
geni Standalone database migration tool
|__ https://github.com/emilpriver/geni
geos Geometry Engine
|__ https://libgeos.org/
gettext GNU internationalization (i18n) and localization (l10n) library
|__ https://www.gnu.org/software/gettext/
gflags Library for processing command-line flags
|__ https://gflags.github.io/gflags/
gh GitHub command-line tool
|__ https://cli.github.com/
ghc Glorious Glasgow Haskell Compilation System
|__ https://haskell.org/ghc/
ghostscript Interpreter for PostScript and PDF
|__ https://www.ghostscript.com/
giflib Library and utilities for processing GIFs
|__ https://giflib.sourceforge.net/
git Distributed revision control system
|__ https://git-scm.com
git-absorb Automatic git commit --fixup
|__ https://github.com/tummychow/git-absorb
git-big-picture Visualization tool for Git repositories
|__ https://github.com/git-big-picture/git-big-picture
git-cliff Highly customizable changelog generator
|__ https://github.com/orhun/git-cliff
git-delta Syntax-highlighting pager for git and diff output
|__ https://github.com/dandavison/delta
git-extras Small git utilities
|__ https://github.com/tj/git-extras
git-filter-repo Quickly rewrite git repository history
|__ https://github.com/newren/git-filter-repo
git-fresh Utility to keep git repos fresh
|__ https://github.com/imsky/git-fresh
git-lfs Git extension for versioning large files
|__ https://git-lfs.github.com/
git-open Open GitHub webpages from a terminal
|__ https://github.com/jeffreyiacono/git-open
git-plus Git utilities: git multi, git
| relation, git old-branches, git recent
|__ https://github.com/tkrajina/git-plus
git-quick-stats Simple and efficient way to access statistics in git
|__ https://github.com/arzzen/git-quick-stats
git-revise Rebase alternative for easy &
| efficient in-memory rebases and fixups
|__ https://github.com/mystor/git-revise
git-standup Git extension to generate reports for standup meetings
|__ https://github.com/kamranahmedse/git-standup
git-town High-level command-line interface for Git
|__ https://www.git-town.com/
git-when-merged Find where a commit was merged in git
|__ https://github.com/mhagger/git-when-merged
git-xargs CLI for making updates across multiple
| Github repositories with a single command
|__ https://github.com/gruntwork-io/git-xargs
gitbackup Tool to backup your Bitbucket, GitHub and GitLab repositories
|__ https://github.com/amitsaha/gitbackup
gitbatch Manage your git repositories in one place
|__ https://github.com/isacikgoz/gitbatch
github-release Create and edit releases on Github (and upload artifacts)
|__ https://github.com/github-release/github-release
gitleaks Audit git repos for secrets
|__ https://github.com/gitleaks/gitleaks
gitlint Linting for your git commit messages
|__ https://jorisroovers.com/gitlint/
gitql Git query language
|__ https://github.com/filhodanuvem/gitql
gitui Blazing fast terminal-ui for git written in rust
|__ https://github.com/extrawurst/gitui
gitup Update multiple git repositories at once
|__ https://github.com/earwig/git-repo-updater
gitversion Easy semantic versioning for projects using Git
|__ https://gitversion.net
gl2ps OpenGL to PostScript printing library
|__ https://www.geuz.org/gl2ps/
glew OpenGL Extension Wrangler Library
|__ https://glew.sourceforge.net/
glib Core application library for C
|__ https://docs.gtk.org/glib/
glibmm@2.66 C++ interface to glib
|__ https://www.gtkmm.org/
glog Application-level logging library
|__ https://github.com/google/glog
glow Render markdown on the CLI
|__ https://github.com/charmbracelet/glow
gmp GNU multiple precision arithmetic library
|__ https://gmplib.org/
gnu-getopt Command-line option parsing utility
|__ https://github.com/util-linux/util-linux
gnu-prolog Prolog compiler with constraint solving
|__ http://www.gprolog.org/
gnu-tar GNU version of the tar archiving utility
|__ https://www.gnu.org/software/tar/
gnupg GNU Pretty Good Privacy (PGP) package
|__ https://gnupg.org/
gnutls GNU Transport Layer Security (TLS) Library
|__ https://gnutls.org/
go Open source programming language to
| build simple/reliable/efficient software
|__ https://go.dev/
gobject-introspection Generate introspection data for GObject libraries
|__ https://gi.readthedocs.io/en/latest/
goocanvas Canvas widget for GTK+ using the Cairo 2D library for drawing
|__ https://wiki.gnome.org/Projects/GooCanvas
gorilla-cli LLMs for your CLI
|__ https://gorilla.cs.berkeley.edu/
gource Version Control Visualization Tool
|__ https://github.com/acaudwell/Gource
gpgme Library access to GnuPG
|__ https://www.gnupg.org/related_software/gpgme/
gphoto2 Command-line interface to libgphoto2
|__ http://www.gphoto.org/
gpredict Real-time satellite tracking/prediction application
|__ https://gpredict.oz9aec.net/
gptme AI assistant in your terminal
|__ https://gptme.org/docs/
gptscript-ai/tap/gptscript GPTScript CLI
|__ https://github.com/gptscript-ai/gptscript
grafana Gorgeous metric visualizations and
| dashboards for timeseries databases
|__ https://grafana.com
graphite2 Smart font renderer for non-Roman scripts
|__ https://graphite.sil.org/
graphviz Graph visualization software from AT&T and Bell Labs
|__ https://graphviz.org/
grex Command-line tool for generating regular expressions
|__ https://github.com/pemistahl/grex
grip GitHub Markdown previewer
|__ https://github.com/joeyespo/grip
grokmirror Framework to smartly mirror git repositories
|__ https://github.com/mricon/grokmirror
gron Make JSON greppable
|__ https://github.com/tomnomnom/gron
grpc Next generation open source RPC library and framework
|__ https://grpc.io/
gsar General Search And Replace on files
|__ https://tjaberg.com/
gsettings-desktop-schemas GSettings schemas for desktop components
|__ https://download.gnome.org/sources/gsettings-desktop-schemas/
gsl Numerical library for C and C++
|__ https://www.gnu.org/software/gsl/
gspell Flexible API to implement spellchecking in GTK+ applications
|__ https://gitlab.gnome.org/GNOME/gspell
gtk+ GUI toolkit
|__ https://gtk.org/
gtk+3 Toolkit for creating graphical user interfaces
|__ https://gtk.org/
gtk-mac-integration Integrates GTK macOS applications with the Mac desktop
|__ https://wiki.gnome.org/Projects/GTK+/OSX/Integration
gtkmm3 C++ interfaces for GTK+ and GNOME
|__ https://www.gtkmm.org/
gtksourceview3 Text view with syntax, undo/redo, and text marks
|__ https://projects.gnome.org/gtksourceview/
gtksourceviewmm3 C++ bindings for gtksourceview3
|__ https://gitlab.gnome.org/GNOME/gtksourceviewmm
gts GNU triangulated surface library
|__ https://gts.sourceforge.net/
guile GNU Ubiquitous Intelligent Language for Extensions
|__ https://www.gnu.org/software/guile/
gumbo-parser C99 library for parsing HTML5
|__ https://codeberg.org/gumbo-parser/gumbo-parser
h3 Hexagonal hierarchical geospatial indexing system
|__ https://uber.github.io/h3/
hamlib Ham radio control libraries
|__ http://www.hamlib.org/
harfbuzz OpenType text shaping engine
|__ https://github.com/harfbuzz/harfbuzz
hdf5 File format designed to store large amounts of data
|__ https://www.hdfgroup.org/solutions/hdf5/
heroku/brew/heroku Everything you need to get started with Heroku
|__ https://cli.heroku.com
hicolor-icon-theme Fallback theme for FreeDesktop.org icon themes
|__ https://wiki.freedesktop.org/www/Software/icon-theme/
highway Performance-portable, length-agnostic SIMD with runtime dispatch
|__ https://github.com/google/highway
html2text Advanced HTML-to-text converter
|__ https://github.com/grobian/html2text
htop Improved top (interactive process viewer)
|__ https://htop.dev/
httpie User-friendly cURL replacement (command-line HTTP client)
|__ https://httpie.io/
hunspell Spell checker and morphological analyzer
|__ https://hunspell.github.io
hurl Run and Test HTTP Requests with plain text and curl
|__ https://hurl.dev
hwatch Modern alternative to the watch command
|__ https://github.com/blacknon/hwatch
hwloc Portable abstraction of the hierarchical
| topology of modern architectures
|__ https://www.open-mpi.org/projects/hwloc/
icdiff Improved colored diff
|__ https://github.com/jeffkaufman/icdiff
icu4c C/C++ and Java libraries for Unicode and globalization
|__ https://icu.unicode.org/home
icu4c@75 C/C++ and Java libraries for Unicode and globalization
|__ https://icu.unicode.org/home
ijq Interactive jq
|__ https://sr.ht/~gpanders/ijq/
imagemagick Tools and libraries to manipulate images in many formats
|__ https://imagemagick.org/index.php
imath Library of 2D and 3D vector, matrix, and math operations
|__ https://www.openexr.com/
ipinfo-cli Official CLI for the IPinfo IP Address API
|__ https://ipinfo.io/
ipopt Interior point optimizer
|__ https://coin-or.github.io/Ipopt/
isl Integer Set Library for the polyhedral model
|__ https://libisl.sourceforge.io/
iso-codes Provides lists of various ISO standards
|__ https://salsa.debian.org/iso-codes-team/iso-codes
ispell International Ispell
|__ https://www.cs.hmc.edu/~geoff/ispell.html
janet Dynamic language and bytecode vm
|__ https://janet-lang.org
jansson C library for encoding, decoding, and manipulating JSON
|__ https://digip.org/jansson/
jaq JQ clone focussed on correctness, speed, and simplicity
|__ https://github.com/01mf02/jaq
jasper Library for manipulating JPEG-2000 images
|__ https://ece.engr.uvic.ca/~frodo/jasper/
jbig2dec JBIG2 decoder and library (for monochrome documents)
|__ https://github.com/ArtifexSoftware/jbig2dec
jc Serializes the output of command-line
| tools to structured JSON output
|__ https://github.com/kellyjonbrazil/jc
jd JSON diff and patch
|__ https://github.com/josephburnett/jd
jemalloc Implementation of malloc emphasizing fragmentation avoidance
|__ https://jemalloc.net/
jless Command-line pager for JSON data
|__ https://jless.io/
ynqa/tap/jnv JSON navigator and interactive filter leveraging jq
jp2a Convert JPG images to ASCII
|__ https://github.com/Talinx/jp2a
jpeg-turbo JPEG image codec that aids compression and decompression
|__ https://www.libjpeg-turbo.org/
jpeg-xl New file format for still image compression
|__ https://jpeg.org/jpegxl/index.html
jq Lightweight and flexible command-line JSON processor
|__ https://jqlang.github.io/jq/
jql JSON query language CLI tool
|__ https://github.com/yamafaktory/jql
json-c JSON parser for C
|__ https://github.com/json-c/json-c/wiki
jsoncpp Library for interacting with JSON
|__ https://github.com/open-source-parsers/jsoncpp
jump Helps you navigate your file system faster by learning your habits
|__ https://github.com/gsamokovarov/jump
just Handy way to save and run project-specific commands
|__ https://github.com/casey/just
kommit More detailed commit messages without committing!
|__ https://github.com/vigo/kommit
krb5 Network authentication protocol
|__ https://web.mit.edu/kerberos/
lame High quality MPEG Audio Layer III (MP3) encoder
|__ https://lame.sourceforge.io/
lapack Linear Algebra PACKage
|__ https://www.netlib.org/lapack/
lazygit Simple terminal UI for git commands
|__ https://github.com/jesseduffield/lazygit/
lefthook Fast and powerful Git hooks manager for any type of projects
|__ https://github.com/evilmartians/lefthook
leptonica Image processing and image analysis library
|__ http://www.leptonica.org/
libaec Adaptive Entropy Coding implementing Golomb-Rice algorithm
|__ https://gitlab.dkrz.de/k202009/libaec
libarchive Multi-format archive and compression library
|__ https://www.libarchive.org
libass Subtitle renderer for the ASS/SSA subtitle format
|__ https://github.com/libass/libass
libassuan Assuan IPC Library
|__ https://www.gnupg.org/related_software/libassuan/
libavif Library for encoding and decoding .avif files
|__ https://github.com/AOMediaCodec/libavif
libb2 Secure hashing function
|__ https://blake2.net/
libbluray Blu-Ray disc playback library for media players like VLC
|__ https://www.videolan.org/developers/libbluray.html
libde265 Open h.265 video codec implementation
|__ https://github.com/strukturag/libde265
libdeflate Heavily optimized DEFLATE/zlib/gzip compression and decompression
|__ https://github.com/ebiggers/libdeflate
libdicom DICOM WSI read library
|__ https://github.com/ImagingDataCommons/libdicom
libepoxy Library for handling OpenGL function pointer management
|__ https://github.com/anholt/libepoxy
libev Asynchronous event library
|__ http://software.schmorp.de/pkg/libev.html
libevent Asynchronous event library
|__ https://libevent.org/
libexif EXIF parsing library
|__ https://libexif.github.io/
libgcrypt Cryptographic library based on the code from GnuPG
|__ https://gnupg.org/related_software/libgcrypt/
libgeotiff Library and tools for dealing with GeoTIFF
|__ https://github.com/OSGeo/libgeotiff
libgit2 C library of Git core methods that is re-entrant and linkable
|__ https://libgit2.github.com/
libgit2@1.7 C library of Git core methods that is re-entrant and linkable
|__ https://libgit2.github.com/
libgpg-error Common error values for all GnuPG components
|__ https://www.gnupg.org/related_software/libgpg-error/
libgphoto2 Gphoto2 digital camera library
|__ http://www.gphoto.org/proj/libgphoto2/
libheif ISO/IEC 23008-12:2017 HEIF file format decoder and encoder
|__ https://www.libde265.org/
libiconv Conversion library
|__ https://www.gnu.org/software/libiconv/
libidn International domain name library
|__ https://www.gnu.org/software/libidn/
libidn2 International domain name library (IDNA2008, Punycode and TR46)
|__ https://www.gnu.org/software/libidn/#libidn2
libimagequant Palette quantization library extracted from pnquant2
|__ https://pngquant.org/lib/
libkml Library to parse, generate and operate on KML
|__ https://github.com/libkml/libkml
libksba X.509 and CMS library
|__ https://www.gnupg.org/related_software/libksba/
liblerc Ersi LERC library (Limited Error Raster Compression)
|__ https://github.com/Esri/lerc
liblinear Library for large linear classification
|__ https://www.csie.ntu.edu.tw/~cjlin/liblinear/
liblqr C/C++ seam carving library
|__ https://liblqr.wikidot.com/
libmagic Implementation of the file(1) command
|__ https://www.darwinsys.com/file/
libmatio C library for reading and writing MATLAB MAT files
|__ https://matio.sourceforge.net/
libmicrohttpd Light HTTP/1.1 server library
|__ https://www.gnu.org/software/libmicrohttpd/
libmng MNG/JNG reference library
|__ https://sourceforge.net/projects/libmng/
libmpc C library for the arithmetic of high precision complex numbers
|__ https://www.multiprecision.org/
libnghttp2 HTTP/2 C Library
|__ https://nghttp2.org/
libogg Ogg Bitstream Library
|__ https://www.xiph.org/ogg/
libomp LLVM's OpenMP runtime library
|__ https://openmp.llvm.org/
libpng Library for manipulating PNG images
|__ http://www.libpng.org/pub/png/libpng.html
libpq Postgres C API library
|__ https://www.postgresql.org/docs/current/libpq.html
libpsl C library for the Public Suffix List
|__ https://rockdaboot.github.io/libpsl
libraqm Library for complex text layout
|__ https://github.com/HOST-Oman/libraqm
libraw Library for reading RAW files from digital photo cameras
|__ https://www.libraw.org/
librist Reliable Internet Stream Transport (RIST)
|__ https://code.videolan.org/rist/
librsvg Library to render SVG files using Cairo
|__ https://wiki.gnome.org/Projects/LibRsvg
librttopo RT Topology Library
|__ https://git.osgeo.org/gitea/rttopo/librttopo