Awesome List Updates on Mar 09 - Mar 15, 2026
52 awesome lists updated this week.
🏠 Home · 🔍 Search · 🔥 Feed · 📮 Subscribe · ❤️ Sponsor
1. Awesome Agents
License / Part of the Elyan Labs Ecosystem
- RustChain — Proof-of-Antiquity blockchain with hardware attestation
2. Awesome Webxr
Standout Projects
- XRSH - Linux virtual machines running inside WebXR to enable live-scripting, packages and prototyping inside an in-VR shell. [repo]
Development / Other
- XR Fragments - A tiny specification for controlling any 3D model using URLs, based on existing metadata. Promoting hyperlinked WebXR storytelling using all 3D editors and viewers. [repo]
Social Spaces / Other
- w3dge - A platform for gatherings and virtual showcases with AI integration.
Web3XR / Engines
- Hyperfy (⭐282) - An open-source framework for building interactive 3D virtual worlds with built-in support for physics, networking, and a component-based application system.
3. Awesome Ironsworn
Resources / Starforged
- Starforged Progress Cards - Printable progress tracking cards for Starforged in standard "poker" card size
4. Awesome Selfhosted
Software / Analytics
- Shaper - Build Data Dashboards all in SQL. Powered by DuckDB. (Demo, Source Code (⭐989))
MPL-2.0Docker/Nodejs/Python/Go
Software / Communication - Custom Communication Systems
- Tuwunel - High-performance and feature-rich chat server for Matrix, and the successor to conduwuit (fork of Conduit). (Demo, Source Code (⭐1.6k))
Apache-2.0deb/Docker/Nix/Rust
Software / Document Management - E-books
- Calibre Web Automated (⭐5k) - All-in-one solution, combining the modern lightweight web UI from Calibre-Web with the robust, versatile feature set of Calibre (fork of Calibre Web).
GPL-3.0Docker
Software / Knowledge Management Tools
- Atomic Server - Knowledge graph database with documents (similar to Notion), tables, search, and a powerful linked data API. Lightweight, very fast and no runtime dependencies. (Demo, Source Code (⭐1.5k))
MITDocker/Rust
- memEx - Structured personal knowledge base, inspired by zettlekasten and org-mode.
AGPL-3.0Docker
Software / Media Management
- Deleterr (⭐271) - Automated media cleanup tool that removes watched and stale content from Plex, Sonarr, and Radarr based on configurable rules.
MITDocker
- TrackWatch
⚠- Automated music release tracker for Spotify with email notifications, discography generator, and ghost track cleaner (alternative to Release Radar). (Source Code (⭐15))MITDocker
Software / Miscellaneous
- OpenReader - EPUB, PDF, DOCX, MD, and TXT file text to speech document reader. Read documents in realtime with high-quality TTS; or extract audiobooks. (Demo, Source Code (⭐283))
MITDocker
Software / Task Management & To-do Lists
- OpenHabitTracker - Track habits, tasks and notes with time tracking, calendar view and completion statistics. (Demo, Source Code (⭐213))
GPL-3.0Docker
5. Awesome Api Clients
Desktop
- EasyPostman (⭐580) - An open-source API debugging and performance testing tool inspired by Postman and a simplified JMeter
6. Awesome Mqtt
Platforms
- Iotellect - Low-code IoT/IIoT platform for industrial automation, SCADA, BMS and remote monitoring. Supports MQTT, OPC-UA, Modbus and 100+ protocols with visual development tools and edge-cloud integration.
7. Awesome Vue
Projects Using Vue.js / Open Source
- JARVIS (⭐3) - Self-hosted AI assistant platform with Vue 3 frontend, Pinia state management, TypeScript, and real-time SSE streaming chat. FastAPI backend with LangGraph ReAct agents, RAG knowledge base, multi-LLM support (DeepSeek/OpenAI/Anthropic), and plugin SDK.
- MYDY Dashboard (⭐0) - Self-hosted personal productivity and finance management dashboard with AI assistant, Kanban board, time tracking, and Telegram Mini App integration. Built with Nuxt 4 and Laravel 11.
Components & Libraries / UI Components
- @witqq/spreadsheet (⭐7) - A canvas-based spreadsheet engine with zero dependencies, rendering 100K+ rows at 60fps with sorting, filtering, formulas, and collaboration.
- vue-timepicker (⭐6) - A lightweight, customizable timepicker component for Vue 3 with TypeScript support. Supports single/range selection, multiple formats, easy styling, validation and more.
- vue-superselect (⭐23) - Headless, accessible, TypeScript-first select/combobox for Vue 3 with dual compound component and composable APIs.
8. Awesome Wardley Maps
Development
- cli-owm (⭐0) - Command-line tool that renders OnlineWardleyMaps DSL text to SVG. Pipes stdin to stdout, ships as npm package and standalone binaries. Uses the OnlineWardleyMaps parser.
9. Awesome V
Command-line
- dnshammer (⭐0) - A covert communication channel that encodes data into DNS cache timing differences.
10. Awesome Lit
Extensions
@tanstack/lit-table- Headless UI for building powerful tables & datagrids with Lit.
11. Htaccess
Rewrite and Redirection / Force www
Force www
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule ^(.*)$ https://www.example.com/$1 [L,R=301,NC]Rewrite and Redirection / Force non-www
Force non-www
It’s still open for debate whether www or non-www is the way to go, so if you happen to be a fan of bare domains, here you go:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*)$ https://example.com/$1 [L,R=301]Rewrite and Redirection / Remove Trailing Slash
Remove Trailing Slash
This snippet will redirect paths ending in slashes to their non-slash-terminated counterparts (except for actual directories), e.g. https://www.example.com/blog/ to https://www.example.com/blog. This is important for SEO, since it’s recommended to have a canonical URL for every page.
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [R=301,L]
Rewrite and Redirection / Redirect an Entire Site
Redirect an Entire Site
Redirect 301 / https://newsite.com/This way does it with links intact. That is www.oldsite.com/some/crazy/link.html will become www.newsite.com/some/crazy/link.html. This is extremely helpful when you are just “moving” a site to a new domain. Source
Rewrite and Redirection / Redirect Using RedirectMatch
Redirect Using RedirectMatch
RedirectMatch 301 /subdirectory(.*) https://www.newsite.com/newfolder/$1
RedirectMatch 301 ^/(.*).htm$ /$1.html
RedirectMatch 301 ^/200([0-9])/([^01])(.*)$ /$2$3
RedirectMatch 301 ^/category/(.*)$ /$1
RedirectMatch 301 ^/(.*)/htaccesselite-ultimate-htaccess-article.html(.*) /htaccess/htaccess.html
RedirectMatch 301 ^/(.*).html/1/(.*) /$1.html$2
RedirectMatch 301 ^/manual/(.*)$ https://www.php.net/manual/$1
RedirectMatch 301 ^/old-directory/(.*)$ /new-directory/$1
RedirectMatch 301 ^/z/(.*)$ https://static.askapache.com/$1
Rewrite and Redirection / Alias “Clean” URLs
Alias “Clean” URLs
This snippet lets you use “clean” URLs -- those without a PHP extension, e.g. example.com/users instead of example.com/users.php.
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([^.]+)$ $1.php [NC,L]
Security / Deny All Access
Deny All Access
Require all deniedBut wait, this will lock you out from your content as well! Thus introducing...
Security / Deny All Access Except Yours
Deny All Access Except Yours
Require all denied
Require ip xxx.xxx.xxx.xxxxxx.xxx.xxx.xxx is your IP. If you replace the last three digits with 0/12 for example, this will specify a range of IPs within the same network, thus saving you the trouble to list all allowed IPs separately. Source
Now of course there's a reversed version:
Security / Allow All Access Except Spammers'
Allow All Access Except Spammers'
Require all granted
Require not ip xxx.xxx.xxx.xxx
Require not ip xxx.xxx.xxx.xxySecurity / Disable Image Hotlinking
Disable Image Hotlinking
RewriteEngine on
# Remove the following line if you want to block blank referrer too
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^https?://(.+\.)?example.com [NC]
RewriteRule \.(jpe?g|png|gif|bmp|webp|avif|svg|ico)$ - [NC,F,L]
# If you want to display a “blocked” banner in place of the hotlinked image,
# replace the above rule with:
# RewriteRule \.(jpe?g|png|gif|bmp|webp|avif|svg|ico) https://example.com/blocked.png [R,L]Security / Disable Image Hotlinking for Specific Domains
Disable Image Hotlinking for Specific Domains
Sometimes you want to disable image hotlinking from some bad guys only.
RewriteEngine on
RewriteCond %{HTTP_REFERER} ^https?://(.+\.)?badsite\.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^https?://(.+\.)?badsite2\.com [NC,OR]
RewriteRule \.(jpe?g|png|gif|bmp|webp|avif|svg|ico)$ - [NC,F,L]
# If you want to display a “blocked” banner in place of the hotlinked image,
# replace the above rule with:
# RewriteRule \.(jpe?g|png|gif|bmp|webp|avif|svg|ico) https://example.com/blocked.png [R,L]Security / Block Visitors by Referrer
Block Visitors by Referrer
This denies access for all users who are coming from (referred by) a specific domain. Source
RewriteEngine on
# Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} somedomain\.com [NC,OR]
RewriteCond %{HTTP_REFERER} anotherdomain\.com
RewriteRule .* - [F]Security / Block Specific User Agents
Block Specific User Agents
This will block specific user agents from accessing your site, useful for blocking scrapers and bad bots.
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} BadBot [NC,OR]
RewriteCond %{HTTP_USER_AGENT} EvilScraper [NC]
RewriteRule .* - [F,L]Security / Content Security Policy (CSP)
Content Security Policy (CSP)
A Content Security Policy header helps mitigate cross-site scripting (XSS) and other code injection attacks by declaring which dynamic resources are allowed to load.
<IfModule mod_headers.c>
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self'"
</IfModule>Adjust the directives to fit your needs. See the CSP reference for all available directives.
Security / Prevent MIME Type Sniffing
Prevent MIME Type Sniffing
This prevents browsers from trying to guess ("sniff") the MIME type of a resource, which can have security implications. The browser will trust what the server says and block the resource if it doesn't match the expected type.
<IfModule mod_headers.c>
Header set X-Content-Type-Options "nosniff"
</IfModule>Security / Set Referrer Policy
Set Referrer Policy
Control how much referrer information is included with requests. This helps protect user privacy by preventing the full URL from leaking to external sites.
<IfModule mod_headers.c>
Header set Referrer-Policy "strict-origin-when-cross-origin"
</IfModule>Security / Set Permissions Policy
Set Permissions Policy
Restrict which browser features your site can use, such as camera, microphone, geolocation, etc.
<IfModule mod_headers.c>
Header set Permissions-Policy "camera=(), microphone=(), geolocation=(), interest-cohort=()"
</IfModule>Performance / Remove Server Signature
Remove Server Signature
Prevent Apache from exposing its version number and OS information in HTTP headers and error pages.
ServerSignature OffPerformance / Set Cache-Control Headers
Set Cache-Control Headers
Cache-Control headers provide more fine-grained control over browser caching than Expires headers. You can use both together for maximum compatibility.
<IfModule mod_headers.c>
# Cache CSS and JS for 1 year
<FilesMatch "\.(css|js)$">
Header set Cache-Control "max-age=31536000, public"
</FilesMatch>
# Cache images for 1 month
<FilesMatch "\.(jpe?g|png|gif|webp|avif|svg|ico)$">
Header set Cache-Control "max-age=2592000, public"
</FilesMatch>
# Cache fonts for 1 month
<FilesMatch "\.(woff2?|ttf|otf)$">
Header set Cache-Control "max-age=2592000, public"
</FilesMatch>
# Do not cache HTML
<FilesMatch "\.(html|htm)$">
Header set Cache-Control "no-cache, no-store, must-revalidate"
</FilesMatch>
</IfModule>Miscellaneous / Turn eTags Off
Turn eTags Off
By removing the ETag header, you disable caches and browsers from being able to validate files, so they are forced to rely on your Cache-Control and Expires header. Source
<IfModule mod_headers.c>
Header unset ETag
</IfModule>
FileETag NoneMiscellaneous / Custom Error Pages
Custom Error Pages
ErrorDocument 500 "Houston, we have a problem."
ErrorDocument 401 https://error.example.com/mordor.html
ErrorDocument 404 /errors/halflife3.htmlMiscellaneous / Custom Maintenance Page
Custom Maintenance Page
Redirect all traffic to a maintenance page while still allowing access from a specific IP address.
RewriteEngine on
RewriteCond %{REMOTE_ADDR} !^xxx\.xxx\.xxx\.xxx
RewriteCond %{REQUEST_URI} !/maintenance.html$ [NC]
RewriteCond %{REQUEST_URI} !\.(css|js|png|jpe?g|gif|svg|ico)$ [NC]
RewriteRule .* /maintenance.html [R=503,L]Replace xxx.xxx.xxx.xxx with your IP address to retain access while the site is under maintenance.
Miscellaneous / Enable CORS
Enable CORS
Enable Cross-Origin Resource Sharing (CORS) for your site, allowing other domains to make requests to your server.
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS"
Header set Access-Control-Allow-Headers "Content-Type, Authorization"
</IfModule>To restrict access to specific domains, replace * with the domain, e.g. https://example.com.
Miscellaneous / Set Custom MIME Types
Set Custom MIME Types
Define custom MIME types for file formats that Apache may not recognize by default.
AddType application/manifest+json .webmanifest
AddType application/wasm .wasm
AddType application/x-ndjson .ndjson
AddType text/vtt .vttMiscellaneous / Switch to Another PHP Version
Switch to Another PHP Version
If you’re on a shared host, chances are there are more than one version of PHP installed, and sometimes you want a specific version for your website. The following snippet should switch the PHP version for you.
AddHandler application/x-httpd-php84 .php
# Alternatively, you can use AddType
AddType application/x-httpd-php84 .phpMiscellaneous / Serve WebP/AVIF Images
Serve WebP/AVIF Images
If a modern format image (AVIF or WebP) with the same name exists alongside the original jpg/png, it will be served instead. AVIF is preferred over WebP when the browser supports both.
RewriteEngine On
# Serve AVIF if supported and available
RewriteCond %{HTTP_ACCEPT} image/avif
RewriteCond %{DOCUMENT_ROOT}/$1.avif -f
RewriteRule (.+)\.(jpe?g|png)$ $1.avif [T=image/avif,E=accept:1]
# Otherwise, serve WebP if supported and available
RewriteCond %{HTTP_ACCEPT} image/webp
RewriteCond %{DOCUMENT_ROOT}/$1.webp -f
RewriteRule (.+)\.(jpe?g|png)$ $1.webp [T=image/webp,E=accept:1]12. Awesome Cli Apps in a Csv
AI terminal command generator
- Blitzdenk (⭐5) - A minimal multi purpose personal AI TUI.
Chat and instant messaging
- Endcord (⭐626) - Discord TUI client.
- Gomphotherium (⭐103) - A command line Mastodon client.
- gurk (⭐1.2k) - Signal Messenger client for terminal.
Clean up of files and directories
- NTC - A program that, based on the contents of a folder, create tabs (subfolders inside the selected folder) and displays their contents.
Command launchers
- Steam TUI (⭐992) - A simple TUI client for steamcmd, allows for the graphical launching, updating, and downloading of steam games through a simple terminal client.
DevOps
- lazycontainer (⭐342) - TUI for managing Apple containers.
- podman-tui (⭐1.1k) - TUI for Podman environment.
- sen (⭐1k) - TUI for containers (manages interactively and inspects containers, dashboard view for containers and images, searching and filtering, real-time updates, tree view of all images).
Editors
- Amp (⭐4k) - A complete text editor for your terminal.
- C-EDIT (⭐294) - A text editor in C with drop down menus in the style of MS-DOS Editor.
- Helix - A text editor with multiple selections, tree-sitter integration, powerful code manipulation, language server support and other modern builtin features.
- maki - A simple text editor with file navigation and an emphasis on preserving battery life.
- Turbo (⭐631) - An experimental text editor for the terminal, based on Scintilla and Turbo Vision.
File manager
- adbtuifm (⭐184) - A TUI file manager for the Android Debug Bridge, to make transfers between the device and client easier.
- Far2l (⭐2.1k) - Linux port of Far v2 file manager.
- fml (⭐95) - Simple and fast file manager written in BASH.
- sfm (⭐251) - Simple file manager for unix-like systems with kernel event notifications, monitoring filesystem events, dual pane and more.
Games
- awkaster (⭐2.5k) - Pseudo-3D shooter written completely in gawk using raycasting technique.
- Balatro TUI (⭐162) - A minimal TUI clone of Balatro built in Rust.
- botany (⭐515) - A command line, realtime, virtual plant buddy.
- Brick Game emulator (⭐22) - Brick Game emulator that uses 4-bit microcontroller from Holtek.
- Brogue CE - Single-player strategy game set in the halls of a mysterious and randomly-generated dungeon.
- csol (⭐97) - Collection of solitaire/patience games, such as Klondike, FreeCell, Spider, and Yukon.
- DOOM-ASCII (⭐815) - Text-based DOOM running in terminal without sound.
- Gameboy Emulator (⭐1.6k) - A PHP Terminal GameBoy Emulator.
- go-life (⭐144) - Terminal based Conway's Game of Life, implemented in Go.
- Micro Snake (⭐36) - A small snake game, utilizing ANSI escape sequences to draw the board.
- Micro Tetris (⭐162) - One of the smallest Tetris implementations in the world, utilizing only ANSI escape sequences to draw the board.
- Moon-Buggy (⭐105) - Game where you drive a car across the moon and jump over craters.
- MyMan - Video game for color and monochrome text terminals in the genre of Namco's Pac-Man.
- nchess (⭐19) - Chess in the terminal, written in C (player vs player in the same terminal).
- nInvaders - Game of Space Invaders for terminal.
- Noughts & Crosses (Tic Tac Toe) (⭐14) - Noughts & Crosses client-server online game with your partner through websockets.
- nSnake (⭐218) - The classic snake game in terminal with textual interface.
- nudoku (⭐363) - ncurses based sudoku game.
- snake (⭐113) - A minimal TUI snake game written in pure BASH v5_1+.
- Square Tic Tac Toe (⭐961) - A game like Tic Tac Toe, but you have to form a square with 4 corners instead of a line.
- SSHTron (⭐2.5k) - Multiplayer lightcycle game that runs through SSH.
- sudoku-rs (⭐25) - Sudoku game for the terminal, built with tui-rs.
- Sweeper (⭐5) - Basic ncurses Minesweeper game, wirtten in python, using curtsies library.
- tty-solitaire (⭐334) - Solitaire game for the terminal ncurses based.
- Wocogo - Terminal word game that challenges players to combine given segments into existing words, uses rich library.
- Wordle (⭐2) - Wordle game, written in Raku.
- Zigtris (⭐28) - Terminal tetris game.
- Zoridor (⭐14) - Terminal and web version of the Quoridor board game.
Learning and didactic tools
- Maze TUI (⭐75) - Build mazes, solve them with various algorithms and visualize them.
Networking
- Thymus (⭐26) - An interactive browser & editor for network configuration files.
Note taking
- Diary (⭐72) - A diary app written in Rust that encrypts both text and file data, and can decrypt and build a rich HTML representation of your diary when required.
Online search and resources
- MAL-Cli (⭐137) - A terminal interface for the official myanimelist api written in Rust and Ratatui.
13. Typedb Awesome
Open source projects using TypeDB
go-typeql- A Go ORM for TypeDB 3.x with type-safe CRUD, query building, migrations, and code generation.
skills- A collection of agent skills, including a TypeDB skill for agent workflows.
14. Awesome Cpp
Frameworks
- WUI (⭐60) - WUI (Window User Interface Library) is a cross-platform library for creating graphical user interfaces in C++17+ [Boost]website
Audio
- PocketSphinx (⭐4.3k) - A lightweight speech recognition engine. [BSD-2-Clause] website
Biology
- htslib (⭐910) - A C library for reading/writing high-throughput sequencing data. [MIT/BSD] website
CLI
- Ginseng (⭐65) - A C++ command-line argument parser. [MIT]
Compression
- cmix (⭐694) - A lossless data compression program that aims for the highest compression ratios at the cost of speed. [GPL-3.0]
- LZSSE-SIMDe (⭐19) - A portable SIMD implementation of LZSSE compression. [BSD-2-Clause]
- Zopfli (⭐3.6k) - A compression library that performs very good but slow deflate/zlib compression. [Apache-2.0]
Concurrency
- libcu++ (⭐2.3k) - The NVIDIA C++ Standard Library, providing heterogeneous implementation of C++ Standard Library facilities. [Apache-2.0]
- nvthreads (⭐26) - A library for enabling efficient and persistent threading in C/C++. [LGPL-2.1]
Containers
- CRoaring (⭐1.8k) - Roaring bitmaps in C (and C++), with SIMD optimizations. [Apache-2.0]
- fifo_map (⭐209) - A FIFO-ordered associative container for C++. [MIT]
- ordered-map (⭐567) - A C++ hash map and hash set which preserves the order of insertion. [MIT]
Cryptography
- tiny-ECDH-c (⭐290) - Small and portable implementation of the ECDH key agreement protocol in C. [PublicDomain]
- Qt-Secret (⭐267) - Simple encryption library based on Qt for C++ projects. [LGPL]
- micro-ecc (⭐1.4k) - A small and fast ECDH and ECDSA implementation for 8-bit, 32-bit, and 64-bit processors. [BSD-2-Clause]
- crypto-algorithms (⭐2k) - Basic implementations of standard cryptography algorithms (AES, SHA, etc.) in C. [PublicDomain]
- aes-stream (⭐21) - A fast AES-based stream cipher for C. [ISC]
Database
- constexpr-sql (⭐141) - A compile-time SQL query parser and executor in C++17. [MIT]
- NuDB (⭐409) - A fast, append-only key/value store for SSD drives. [Boost]
Data visualization
- matplotlib-cpp (⭐4.7k) - A C++ wrapper around the matplotlib Python plotting library. [MIT]
Debug
- Attest (⭐4) - Cross-platform, heap-free C test framework with parameterized and lifecycle-aware tests and assertions with ad-hoc formatted messages. [MIT]
- MTuner (⭐2.8k) - A C/C++ memory profiler and memory leak finder for Windows, PlayStation, and other platforms. [BSD-2-Clause]
- heaptrack (⭐4k) - A heap memory profiler for Linux. [LGPL-2.1]
GUI
- GuiLite (⭐7.7k) - The smallest header-only GUI library (5 KLOC) for all platforms. [Apache-2.0]
- LCUI (⭐4.3k) - A small C library for building user interfaces with C, XML and CSS. [MIT]
Image Processing
- OpenImageDenoise (⭐2k) - High-performance, high-quality denoising library for ray-traced images. [Apache-2.0] website
- bitmap (⭐178) - C++ Bitmap Library for reading, writing, and processing BMP image files. [MIT]
JSON
- libdart (⭐80) - A high-performance, network-optimized JSON manipulation library. [MIT]
Logging
- logfault (⭐63) - A simple, elegant and efficient C++ header-only logging library. [MIT]
Machine Learning
- TensorComprehensions (⭐1.8k) - A fully-functional C++ library to automatically synthesize high-performance machine learning kernels. [Apache-2.0]
- kann (⭐746) - A lightweight C library for artificial neural networks. [MIT]
Math
- Fastor (⭐832) - A lightweight high performance tensor algebra framework for modern C++. [MIT]
- geogram (⭐2.4k) - A programming library of geometric algorithms. [BSD-3-Clause]
- std-simd (⭐639) - A portable implementation of std::experimental::simd for C++. [BSD-3-Clause]
- libdivide (⭐1.3k) - Optimized integer division for C/C++ using libdivide. [zlib] website
- fpsqrt (⭐94) - Fast fixed point and floating point square root for C. [MIT]
- fastmod (⭐341) - Header-only fast C/C++ library for computing remainders and modular reductions. [Apache-2.0]
- Spectra (⭐835) - A C++ library for large scale eigenvalue problems, built on top of Eigen. [MPL2] website
- FastNoiseSIMD (⭐627) - A library for SIMD-accelerated noise generation functions. [MIT]
Memory Allocation
- Mesh (⭐1.8k) - A memory allocator that automatically reduces the memory footprint of C/C++ applications. [Apache-2.0]
- rpmalloc (⭐2.4k) - A public domain cross-platform lock-free thread-caching 16-byte aligned memory allocator. [PublicDomain]
- TLSF (⭐1.5k) - Two-Level Segregated Fit memory allocator, a general purpose dynamic memory allocator. [BSD]
Networking
- OpenDDS (⭐1.5k) - An open source C++ implementation of the Object Management Group (OMG) Data Distribution Service (DDS). [Apache2]
- easyhttpcpp (⭐168) - A cross-platform HTTP client library providing a caching facility from Sony. [MIT]
- GameNetworkingSockets (⭐9.3k) - Reliable & unreliable messages over UDP by Valve. Connection-oriented API (like TCP). [BSD-3-Clause]
- wepoll (⭐1.1k) - A Windows epoll wrapper based on Winsock. [BSD-2-Clause]
Physics
- tungsten (⭐1.8k) - A high-performance physically based renderer in C++. [zlib]
Regular Expression
- Pawn.Regex (⭐47) - A Pawn plugin that provides support for regular expressions using C++11 std::regex. [MIT]
Scripting
- hobbes (⭐1.2k) - A language and an embedded JIT compiler from Morgan Stanley. [Apache-2.0]
Serialization
- fbthrift (⭐2.7k) - Facebook's branch of Apache Thrift, including a serialization library and RPC framework. [Apache-2.0]
Video
- libuvc (⭐1.1k) - A cross-platform library for USB video devices. [BSD]
Web Application Framework
- aeronet (⭐34) - High-performance, modular C++ HTTP/1.1, HTTP/2 and WebSocket microservices framework focused on performance and scalability. [MIT]
- httpserver.h (⭐1.9k) - A single-header HTTP server library for C. [MIT]
- libhttp (⭐1k) - A cross-platform HTTP and HTTPS library in C/C++. [MIT]
Miscellaneous
- Dragonbox (⭐798) - Reference implementation of a new float-to-string conversion algorithm in C++. [Apache2/BSL-1.0]
- Gear-Lib (⭐3.2k) - A collection of basic libraries in POSIX C for embedded and network service development. [MIT]
- single_file_libs (⭐9.8k) - C/C++ open-source libraries with minimal dependencies. [Various]
- spy (⭐157) - A C++17 constexpr library for detecting OS, compiler, architecture, and SIMD at compile time. [MIT]
- licensepp (⭐429) - A software license management library for C++ projects. [Apache-2.0]
- tinydir (⭐865) - A lightweight, portable, and easy to integrate C directory and file reader. [BSD-2-Clause]
- Cello (⭐7.1k) - Higher level programming in C, including generic data structures and polymorphism. [BSD-2-Clause] website
- dyno (⭐1k) - A C++ library for runtime polymorphism with value semantics. [Boost]
- PolyHook (⭐924) - A C++ x86/x64 hooking library. [MIT]
- Verdigris (⭐673) - A header-only library that allows using Qt without the need for moc. [MIT]
- Flicks (⭐1.4k) - A unit of time defined by Facebook/Oculus for exact representation of common frame rates. [BSD]
- Linq (⭐666) - Provides a LINQ syntax for list comprehension in C++. [Boost]
- libcorrect (⭐424) - A C library for convolutional codes and Reed-Solomon error correction. [BSD-3-Clause]
- libfsm (⭐978) - A library for building and executing finite state machines, including regex and glob. [BSD-2-Clause]
- origin (⭐134) - A C++ library for concepts, diagnostics, and other foundational utilities.
Compiler
- sierra - A CISC-oriented programming language focused on creating maintainable programs.
- movfuscator (⭐10k) - The single instruction C compiler, compiling programs into only mov instructions. [MIT]
Build Systems
- awesome-cmake (⭐5.3k) - A curated list of awesome CMake scripts, modules, and resources.
- boost-cmake (⭐408) - CMake modules for Boost libraries. [BSD-3-Clause]
- cmake-examples (⭐1.2k) - A collection of useful CMake examples for various scenarios. [MIT]
Static Code Analysis
- CodeCompass (⭐589) - An open-source code comprehension tool for large C/C++ projects. [GPL-3.0]
- CodeChecker (⭐2.5k) - An analyzer tooling, defect database and viewer extension for the Clang Static Analyzer and Clang-Tidy. [Apache-2.0]
Articles
- All C++20 core language features with examples - A reference of all C++20 core language features with examples.
- Memory Footprint of GUI Toolkits - A comparison of the memory footprint of various GUI toolkits.
- C++ UI Libraries - A comprehensive list of C++ UI solutions.
- C++ Compilation (⭐1.2k) - A short description of the C++ compilation process.
- Books on C++17 - A list of books on C++17.
- modern-cpp-features (⭐22k) - A cheatsheet of modern C++ language and library features.
- Choosing Some C++ Over C - An article about when to use C++ instead of C.
- C++ 17 Features - A comprehensive list of C++17 features.
- Master C Programming with Open Source Books - A curated list of open source books for learning C programming.
Websites
- C++ Resources - A collection of C++ resources including books, articles, and tools.
- CppPatterns (⭐1.5k) - A repository of modern C++ patterns and idioms. website
- Function Pointers (⭐33) - A guide to understanding function pointers in C/C++.
Other Awesome Projects
- awesome-ld-preload (⭐911) - A curated list of resources related to LD_PRELOAD.
- awesome-static-analysis (⭐14k) - A curated list of static analysis tools for all programming languages.
- cpp_functional_programming (⭐700) - A list of materials and links for C++ functional programming.
- algorithms_and_data_structures (⭐6.1k) - Implementation of algorithms and data structures in C++.
15. Awesome Nextjs
Boilerplates
- Kaiforge Lite (⭐0) - Free and open-source Next.js admin dashboard template with Tailwind CSS, dark mode, and multiple color themes.
16. Awesome Tmux
Tools and session management
- tmux-grip Pin tmux sessions to fixed numbered slots with direct key jumps and a popup manager
17. Awesome Keycloak
Community Extensions
18. Awesome Django
Third-Party Packages / Admin
- dj-control-room - Build a control plane with a suite of operational tools inside the Django admin (Redis, cache, Celery, URLs, and more).
19. Awesome Godot
3D / Godot 4
- Sunder - An open-source, fast-paced multiplayer shooter game inspired by Tribes, with jetpacks, skis and vehicles.
GDScript/C# editor support / Godot version unknown
- Neovim - A batteries-included Neovim plugin for Godot 4.x game development. Use Neovim as a fully featured external editor for Godot, with minimal setup.
20. Awesome Chrome Devtools
Accessibility (A11y) / Ruby
- Chromelens - See how your web app will look to people with different types of vision and the path users will travel when tabbing through your page.
Workflow / Ruby
- Clockwork - View PHP application profiling data.
- Emulated Device Lab - Experiment with multiple devices being emulated at the same time.
- RailsPanel - View Ruby on Rails application profiling data.
- React Developer Tools - Inspect the React component hierarchies.
- Ember.js Inspector - Allows you to inspect Ember.js objects in your application.
- Marionette Inspector - Inspect a Marionette application's views, events, and live data.
- Backbone Debugger - Inspect a Backbone application's views, models, events, and routes.
- App Inspector for Sencha - Inspect a Sencha ExtJS/Touch application's component tree, data stores, events, and layouts.
- Redux Devtools - Inspect Redux with actions history, undo and replay.
- Three.js - Edit any three.js project.
- Metal.js Developer Tools - Inspect the Metal component hierarchies.
- Web Component DevTools - Inspect, modify and observe Web Components on page.
Themes / Ruby
- DevTools Author - A selection of themes to modify parts of DevTools related to authoring web applications.
- Zero Dark Matrix - Dark theme for Chrome Developer Tools.
- Material UI Theme - Provides various Material Design inspired themes.
21. Awesome Mac
System Tools / Menu Bar
- dwarvesf/hidden (⭐13k) — Ultra-light utility to hide menu bar icons ☆
13,474
22. ALL About RSS
Self Hosted Readers / Outline Processor Markup Language
- Dashboard (⭐5) -

lightweight, customizable, client-side RSS feeds dashboard.
23. Awesome Web Archiving
Tools & Software / Quality Assurance
- Chrome Check My Links - Browser extension: a link checker with more options.
- Chrome link checker - Browser extension: basic link checker.
- Chrome link gopher - Browser extension: link harvester on a page.
- Chrome Open Multiple URLs - Browser extension: opens multiple URLs and also extracts URLs from text.
- Chrome Revolver - Browser extension: switches between browser tabs.
24. Awesome Readme
Examples
- FileShot/FileShotZKE (⭐18) - Well-structured security documentation. Clear API reference with code examples. Detailed how-it-works section covering key derivation, AES-256-GCM encryption, and upload pipeline. Browser support table and security policy.
Articles
- "Top ten reasons why I won’t use your open source project" - Adam Stacoviak
25. Awesome Playcanvas
3D Gaussian Splatting / YouTube Playables
- Solaya - Generate high-fidelity 3D digital twins as the foundation for unlimited visual assets.
- StorySplat - Transform your 3D captures into interactive stories.
26. Awesome WebExtensions
Getting started
- Mozilla's WebExtensions documentation - MDN wiki for the WebExtensions API.
- Browser support for WebExtensions - Compatibility table for Chrome, Edge, Firefox, and Opera.
27. Awesome Opensource Apps
What do we have:
Project Name: 2048 (⭐2.3k)
Contributors: Krunal
Project Name: AI chatbot
Contributors: umar abdullahi
Project Name: AI for guess the number (⭐2.3k)
Contributors: Omar Sameh
Project Name: Address locator
Contributors: Chris
Project Name: Asymmetric Encryption
Contributors: victor matheus
Project Name: Attachment Unique Mail
Contributors: Arnav Dandekar
Project Name: Automated calendar
Contributors: J.A. Hernández
Project Name: Automated emails
Contributors: Suvigya
Project Name: Battery_notification (⭐2.3k)
Contributors: Krishna Sharma
Project Name: Better_CSV_Storage (⭐2.3k)
Contributors: Bhargav Kuvadiya
Project Name: Bitcoin price GUI
Contributors: Amirul Abu
Project Name: CLI Calculator
Contributors: Willian GL
Project Name: COVID visualiser (real-time)
Contributors: Tushar Gupta
Project Name: CSV to Excel (⭐2.3k)
Contributors: xemeds
Project Name: Caesar Cipher
Contributors: epi052
Project Name: Checksum tool
Contributors: Austin Ewens
Project Name: Clean_up_photo
Contributors: sritanmay001
Project Name: Codechef autosubmitter
Contributors: Harshit Mahajan
Project Name: Codeforces Checker
Contributors: Jinesh Parakh
Project Name: Colored B&W Image Converter
Contributors: Nitish Srivastava
Project Name: Contact 'Leads' Distribution
Contributors: Tiago Cordeiro
Project Name: Countdown (⭐2.3k)
Contributors: Jeremias Gomes
Project Name: csv_to_json (⭐2.3k)
Contributors: MoiZ
Project Name: Cricket Matches web Scraper
Contributors: Divy Ranjan
Project Name: Crypt socket
Contributors: Willian GL
Project Name: Cryptocurrency Converter
Contributors: AdnCodz
Project Name: Cryptocurrency Prices (⭐2.3k)
Contributors: xemeds
Project Name: Current City Weather
Contributors: Jesse Bridge
Project Name: DNA Analysis Toolkit (⭐13)
Contributors: shmlkv
Project Name: Database-As-Storage (⭐2.3k)
Contributors: Bhargav Kuvadiya
Project Name: Directory Tree Visualizer (⭐2.3k)
Contributors: Harpreet Singh Saluja
Project Name: Directory organizer
Contributors: Athul P
Project Name: Download Page as PDF (⭐2.3k)
Contributors: Jeremias Gomes
Project Name: Elasticsearch snapshot (⭐2.3k)
Contributors: Joe Ryan
Project Name: English Theasaurus (⭐2.3k)
Contributors: Ansh Dhingra
Project Name: Excel Files Merger
Contributors: Andrei N
Project Name: Excel to List
Contributors: Nitish Srivastava
Project Name: Extended_ip_address_info
Contributors: hafpaf
Project Name: Face Recognition (⭐2.3k)
Contributors: LOKESH KHURANA
Project Name: Fibonacci_Sequence_Generator
Contributors: John Wesley Kommala
Project Name: File Carving (⭐2.3k)
Contributors: Yeryeong Kim
Project Name: File Encrypt Decrypt
Contributors: Aditya Arakeri
Project Name: FileMagic Organizer
Contributors: malivinayak
Project Name: File Organizer
Contributors: Ayush Bhardwaj
Project Name: File Sharing Bot
Contributors: Darshan Patel
Project Name: File explorer
Contributors: Nikhil Kumar Singh
Project Name: Find PhoneNumber in String
Contributors: Austin Zuniga
Project Name: Flash card quizzer
Contributors: Utkarsh Sharma
Project Name: Folder Locker and hider (⭐2.3k)
Contributors: Prajjwal Pathak
Project Name: Folder Manager
Contributors: Harsh Raj
Project Name: Frammed text generator
Contributors: jcdwalle
Project Name: Get Time By TimeZone (⭐2.3k)
Contributors: Parth Shah
Project Name: git_automation (⭐2.3k)
Contributors: loge1998
Project Name: Github repo creator (⭐2.3k)
Contributors: Harish Tiwari
Project Name: Github Review Bot (⭐2.3k)
Contributors: Gaurav Giri
Project Name: GithubBot (⭐2.3k)
Contributors: Abhilasha
Project Name: Gmail Mailing Script
Contributors: mayank-kapur
Project Name: Google Meet Joiner (⭐2.3k)
Contributors: JohanSanSebastian
Project Name: HTML Table to List
Contributors: Nitish Srivastava
Project Name: Handwrting DNN recognizer
Contributors: Chris
Project Name: Harry Potter Cloak (⭐2.3k)
Contributors: thesmartdeveloperr
Project Name: IMDB TV Series Info Extractor
Contributors: Yash Raj Sarrof
Project Name: IMDBQuerier
Contributors: Burak Bekci
Project Name: IP Address (⭐2.3k)
Contributors: Xenium
Project Name: Image Compressor (⭐2.3k)
Contributors: Prathima Kadari
Project Name: Image To PDF
Contributors: msaoudallah
Project Name: Image Watermarker (batch)
Contributors: Remco Halman
Project Name: Image circle formatter
Contributors: Berk Gureken
Project Name: Independent RSA Communication Algorithm (⭐2.3k)
Contributors: Miguel Santos
Project Name: Instadp Web Scrapper
Contributors: Psychiquest
Project Name: Instagram Video Downloader (⭐2.3k)
Contributors: Shobhit Bhosure
Project Name: JSON file to YAML convertor (⭐1)
Contributors: Saksham Basandrai
Project Name: Keylogger
Contributors: Preet Mishra
Project Name: Medium Article Downloader
Contributors: coolsonu39
Project Name: Minecraft Server in background
Contributors: Max von Forell
Project Name: Own IP locator
Contributors: Chris
Project Name: PDFsplitter
Contributors: Prathamesh-Ghatole
Project Name: PX to REM (⭐2.3k)
Contributors: Atthaphon Urairat
Project Name: Pdf to AudioBook Converter (⭐2.3k)
Contributors: Ayesha Gull
Project Name: Plagiarism_detector (⭐2.3k)
Contributors: Akshita Singhal
Project Name: Port Scanner
Contributors: Plutoberth
Project Name: Pressure_Converter (⭐0)
Contributors: E-Wave
Project Name: Pretty CSV
Contributors: Frizz925
Project Name: PyRecorder
Contributors: Rocky Jain
Project Name: py_based_music_player (⭐2.3k)
Contributors: Bhargav Kuvadiya
Project Name: Py_Cleaner
Contributors: Abhishek Dobliyal
Project Name: Python Algebra Solver
Contributors: Sengxay Xayachack
Project Name: RSA Algorithm (⭐2.3k)
Contributors: Chinmay Rane
Project Name: RSA Key Pair Generator
Contributors: Aditya Parikh
Project Name: Random Password Generators
Contributors: Hafpaf and Renderer-RCT2
Project Name: Random name generator
Contributors: Ayush Bhardwaj
Project Name: Random_Email_Generator
Contributors: Shubham Garg
Project Name: Remove-Duplicate-Files
Contributors: Aayushi Varma
Project Name: Rock-Paper-Scissor Game (⭐2.3k)
Contributors: Punit Sakre
Project Name: send_whatsapp_message
Contributors: Mukesh Prasad
Project Name: Send messages to sqs in parallel
Contributors: Jinam Shah
Project Name: Server Ping
Contributors: prince
Project Name: Signature photo to PNG converter
Contributors: Rodolfo Ferro
Project Name: Simple Webpage Parser
Contributors: Nitish Srivastava
Project Name: Slideshare downloader
Contributors: Chris Goes
Project Name: SMS your location
Contributors: prince
Project Name: Spotify Downloader
Contributors: Sagar Patel
Project Name: Squid installer for Ubuntu
Contributors: Berkay Demir
:
Project Name: SSH Host adder (⭐2.3k)
Contributors: NinoDoko
Project Name: Steg_Tool (⭐2.3k)
Contributors: Shankar JP
Project Name: sudoku-solver (⭐2.3k)
Contributors: Rishabh Umrao
Project Name: Subtitle downloader
Contributors: Kaushlendra Pratap
Project Name: TTS - Text to Speech Mp3 (⭐2.3k)
Contributors: Antonio Andrade
Project Name: Take Screenshot
Contributors: Moad Mohammed Elhebri
Project Name: Tambola_Ticket_Generator
Contributors: Amandeep_Singh
Project Name: Test Your Internet Speed (⭐2.3k)
Contributors: TheSmartDeveloperr
Project Name: TicTacToe AI and 2 players (⭐4)
Contributors: Omar Sameh
Project Name: To Do Bot
Contributors: Darshan Patel
Project Name: Translate CLI (⭐2.3k)
Contributors: Rodrigo Oliveira
Project Name: URL shortener
Contributors: Sam Ebison
Project Name: Upload Files to S3
Contributors: Jayram Nai
Project Name: Vinegère Cipher
Contributors: victoni
Project Name: Web proxy
Contributors: Nikhil Kumar Singh
Project Name: Website Url Detector
Contributors: sonniki
Project Name: Website blocker
Contributors: Ayush Bhardwaj
Project Name: WiFi Password Viewer
Contributors: Sagar Patel
Project Name: Wikipedia-Search (⭐2.3k)
Contributors: Nissaar
Project Name: Word Frequency Counter
Contributors: sonniki
Project Name: Word generator
Contributors: TGLIDE
Project Name: Work log generator
Contributors: Maël Pedretti
Project Name: X Scrapper
Contributors: Shreeram
Project Name: YTS Torrents
Contributors: Mayank Nader
Project Name: Yoda-speak Translator
Contributors: sonniki
Project Name: Youtube video downloader
Contributors: Christopher He
Project Name: Zabbix API
Contributors: msg4sunny
Project Name: Zip password cracker
Contributors: umar abdullahi
Project Name: Task Scheduler
Contributors: heysagnik
Project Name: PDF Password Decypter
Contributors: parthasdey2304
Project Name: Password Strength Checker
Contributors: Parveshiiii
Project Name: QR Code Generator
Contributors: Parveshiiii
28. Awesome Sysadmin
Software / Identity Management - LDAP
- LTB Self-Service Password - Web interface to change and reset LDAP passwords. (Source Code (⭐1.3k))
GPL-3.0PHP
29. Awesome Zsh Plugins
Plugins / superconsole - Windows-only
- edit-select (⭐5) - Brings a full text-editor experience to the ZSH command line: copy, cut, paste, undo/redo, type-to-replace, and native X11/Wayland clipboard integration, with Shift+Arrow and mouse selection support.
- git-worktree-manager (⭐0) - Manage
gitworktrees with ease. Streamline your workflow when working with multiple branches simultaneously.
- gitignore (⭐54) - Plugin for creating
.gitignorefiles.
- llm-replace (⭐2) - Integrate LLMs into the shell for quick command generation. Requires
curlandjq.
Themes / superconsole - Windows-only
- ooh-matron (⭐0) - Real time prompt with decorators for exit status of last command, username@hostname, IP address and
gitstatus.
- sentinelx (⭐0) - A lightweight, high-fidelity Zsh theme optimized for penetration testing and red teaming. It provides real-time situational awareness and process tracking for long-running security tools. Includes decorators for
gitstatus, a live process spinner, VPN status, root status and last command duration.
30. Awesome Game Remakes
Adventure
- DetectiveDS (⭐3) - A remake of the original C64 classic The Detective Game for Nintendo DS.
- lba2remake (⭐276) - A Little Big Adventure 2 / Twinsen's Odyssey reimplementation in JavaScript / Three.js / React.
- twin-e (⭐87) - TwinEngine: a Little Big Adventure engine.
- timeco (⭐7) - Time Commando Reimplementation
- lba1-classic (⭐1) - Little Big Adventure: Twinsen's Adventure Definitive Edition
- lba2-classic-community (⭐87) - Little Big Adventure 2 engine source code.
Arcade
- AcidDrop (⭐1) - Remake of classic Atari 2600 game "Acid Drop".
- openomf (⭐448) - One Must Fall 2097 Remake.
- Retro-Arcade-Remakes (⭐2) - C++ retro arcade remakes showcasing clean OOP design, game loops, collision systems, and state management.
- SpaceRox.MX2 (⭐1) - 2D Asteroids Style Game using MX2.
- WarhawkDS (⭐1) - Warhawk DS remake of the C64 game Warhawk to the Nintendo DS in native assembler.
FPS
- Barrett (⭐20) - Advanced and featureful Rise of the Triad source port for modern systems.
- Chasm-Reverse (⭐171) - "PanzerChasm" is a free recreation of the game "Chash: - The Rift" by "ActionForms" using the original game data (CSM.BIN file).
- DOOM64-EX-Plus-Enhanced (⭐35) - fork of the Doom 64 EX+ engine, Its main goal is to show what the Doom 64 engine would have looked like if it hadn't been limited by the N64 console.
- EDGE-classic (⭐98) - Cross-Platform OpenGL Doom Source Port with powerful modding features.
- idTech4A++ (Harmattan Edition) (⭐518) - DOOM III/Quake 4/Prey(2006) GLES on Android/Windows/Linux, DOOM 3 BFG/The Dark Mod/RTCW/Quake 1 2 3/GZDOOM/ETW/RealRTCW/OpenJK/SeriousSam/Skin Deep on Android.
- jfsw (⭐92) - Port of the 3D Realms game "Shadow Warrior".
- jftekwar (⭐26) - No-promises port of the Capstone Software game "TekWar".
- jfwhaven (⭐25) - No-promises port of the Capstone Software game "Witchaven".
- OpenChasm (⭐19) - Free software reconstruction of Chasm: The Rift game.
- quakeforge (⭐59) - QuakeForge is descended from the original Quake engine as released by Id Software in December 1999, and can be used to play original Quake and QuakeWorld games and mods (including many modern mods).
- Raze (⭐835) - Build engine port backed by GZDoom tech. Currently supports Duke Nukem 3D, Blood, Shadow Warrior, Redneck Rampage and Powerslave/Exhumed.
- SeriousSamAlphaRemake (⭐31) - Serious Sam Alpha Remake open source project based.
Platformer
- ManicMinerLL (⭐3) - A re-working of Manic Miner onto the DS using levels created for other official computer released versions.
Racing
- dRally (⭐70) - Open Source Engine / Death Rally [1996]
- dethrace (⭐1.1k) - Reverse engineering the 1997 game "Carmageddon"
- hi-octane202x (⭐7) - Hi-Octane with level editor using Irrlicht engine.
- HiOctaneTools (⭐31) - Tools to inspect and modify levels of the game Hi-Octane by Bullfrog (1995).
- tube64 (⭐19) - 64-bit vesion of DOS game Tube (Bullfrog, 1994)
- retruxx (⭐3) - Reverse engineered Hard Truck Apocalypse.
Simulator
- Descent3 (⭐3k) - Descent 3 by Outrage Entertainment
Strategy
- Unciv (⭐10k) - Open-source Android/Desktop remake of Civ V.
- OpenCiv3 (⭐547) - OpenCiv3 is an open-source, cross-platform, mod-oriented, modernized remake of Civilization III by the fan community built with the Godot Engine and C#.
- freeciv (⭐1.5k) - Freeciv is a Free and Open Source empire-building strategy game inspired by the history of human civilization.
- freecivworld (⭐10) - Freecivworld.net is the 3D version of Freeciv.
- Flame (⭐83) - Dungeon Keeper II partial recompilation with bug fixes.
- maxr (⭐38) - A turn based strategy game.
- mc2 (⭐133) - Mech Commander 2 open source engine + OpenGL Linux port.
- MegaGlest (⭐392) - MegaGlest real-time strategy game engine (cross-platform, 3-d).
- OpenDungeonsPlus (⭐16) - Open source game inspired by Dungeon Keeper - Dark, damp and dangerous...
- OPHD (⭐131) - OutpostHD - Open source remake of Sierra On-Line's Outpost.
- OpenCrystalCaves (⭐81) - OCC is an unofficial open source engine reimplementation of the game trilogy Crystal Caves.
- OpenTPW (⭐145) - An open-source re-implementation of Bullfrog's Sim Theme Park / Theme Park World (1999).
- simutrans (⭐77) - Simutrans is a freeware and open-source transportation simulator. 🎴
- Syndicate Wars (⭐205) - Syndicate Wars Fan Expansion, Open Source remake of the classic Bullfrog game.
31. Awesome Windows
Communication
- Stoat - Chat platform built with modern web tech.
IDEs
- VSCodium - A VS Code fork without all the Microsoft bloat and telemetry.
32. Awesome Zig
Language Essentials / String Processing
- atman/zg - Provides Unicode text processing for Zig projects. It works correctly with the Russian language and other languages.
Language Essentials / File Format Processing
- OrlovEvgeny/serde.zig (⭐8) - Comptime serialization framework for Zig supporting JSON, MessagePack, TOML, YAML, ZON, and CSV.
Network & Web / Network
- zat.dev/zat - AT Protocol building blocks for zig.
33. Awesome Computational Biology
scRNA
- CZ CELLxGENE — Single-cell dataset repository and interactive explorer from the Chan Zuckerberg Initiative.
- Human Cell Atlas — Open global atlas of all cells in the human body.
Compound
- HMDB (Human Metabolome Database) — Comprehensive database of small molecule metabolites found in the human body.
- DrugCentral — Online drug compendium with drug mode of action and indication information.
Protein
- SAbDab — Structural Antibody Database containing all antibody structures in the PDB.
- OADB (Observed Antibody Space Database) — Database of antibody sequences from immune repertoire sequencing.
Genome
- ENCODE — Encyclopedia of DNA Elements; regulatory and functional genomic elements across the genome.
- Ensembl — Genome browser and annotation database for vertebrate and other eukaryotic genomes.
- gnomAD — Genome Aggregation Database; genetic variation from large-scale sequencing projects.
- Rfam — Database of RNA families with sequence alignments and consensus structures.
Disease
- DisGeNET — Database of gene-disease associations integrating expert-curated and GWAS data.
- OMIM (Online Mendelian Inheritance in Man) — Comprehensive database of human genes and genetic disorders.
Protein-Protein Interaction
- IntAct — Open-source molecular interaction database and analysis system from EMBL-EBI.
Benchmarks & Datasets
- BindingDB Curated Sets — Curated binding affinity datasets for protein–ligand interaction benchmarking.
- Cancer Therapeutics Response Portal (CTRP) — Drug sensitivity profiles across ~900 cancer cell lines for >400 compounds.
- GuacaMol (⭐500) — Benchmark suite for generative molecular design models.
- MOSES (⭐957) — Benchmarking platform for molecular generation models.
- Therapeutics Data Commons (TDC) — Unified benchmark suite covering ADMET, drug-target interaction, drug response, and more.
Preprocessing Tools
- Biopython — Collection of Python tools for biological computation including sequence analysis, structure parsing, and database access.
- DeepChem (⭐6.6k) — Deep learning library for drug discovery, quantum chemistry, and materials science.
- scvi-tools — Probabilistic models for single-cell omics data analysis.
- CellTypist (⭐457) — Automated cell type annotation for scRNA-seq.
- GROMACS — Molecular dynamics simulation package for biochemical molecules.
- MDAnalysis — Python library for analyzing and altering molecular dynamics simulation trajectories.
- OpenMM — High-performance toolkit for molecular simulation and GPU-accelerated MD.
Molecular Generation
- REINVENT (⭐370) — Reinforcement learning for de novo drug design.
- MolGPT (⭐169) — Transformer-based model for molecular generation.
- Molecular Transformer (⭐413) — Sequence-to-sequence model for retrosynthesis prediction.
- TargetDiff (⭐323) — 3D equivariant diffusion model for structure-based drug design.
LLM for Biology
- ClawBio (⭐106) — Bioinformatics-native AI agent skill library with local-first pharmacogenomics, ancestry PCA, semantic similarity, nutrigenomics, and metagenomics skills.
Single-cell Foundation Models / Transcriptomics Foundation Models
- Geneformer — Context-aware, attention-based deep learning model pretrained on a large corpus of single-cell transcriptomes.
- scBERT (⭐347) — BERT-based foundation model pretrained on large-scale scRNA-seq data for cell type annotation.
- CellPLM (⭐101) — Cell pre-trained language model with inter-cell transformer architecture for diverse single-cell analysis tasks.
Single-cell Foundation Models / Spatial Foundation Models
- GigaPath (⭐578) — Slide-level digital pathology foundation model pretrained on 1.3 billion pathology image tokens from whole-slide images.
- UNI (⭐681) — General-purpose self-supervised pathology foundation model trained on 100K+ whole-slide images for diverse computational pathology tasks.
- CONCH (⭐472) — Vision-language foundation model for computational pathology trained with contrastive captioning on pathology image–text pairs.
- Phikon — ViT-based pathology foundation model pretrained with iBOT self-supervision on TCGA whole-slide images.
Single-cell Foundation Models / Multi-Omics Foundation Models
- scMulan (⭐62) — Single-cell multi-omic language model pretrained on ~10M cells spanning transcriptomics, epigenomics, and proteomics for cross-omics transfer tasks.
- totalVI (⭐1.6k) — Probabilistic framework for joint analysis of paired scRNA-seq and protein (CITE-seq) data enabling multi-modal cell state representation across single-cell datasets.
- MultiVI (⭐1.6k) — Multi-modal variational autoencoder for integrating paired and unpaired single-cell RNA-seq and ATAC-seq measurements into a unified latent space.
- MIRA (⭐67) — Probabilistic multimodal topic model jointly modeling single-cell transcriptomics and chromatin accessibility for regulatory network inference.
- GLUE (⭐455) — Graph-Linked Unified Embedding framework for unpaired single-cell multi-omics data integration across RNA, ATAC, methylation, and protein modalities.
- BABEL (⭐47) — Cross-modality translation model enabling prediction between scRNA-seq and scATAC-seq profiles without requiring paired single-cell measurements.
- Multigrate (⭐31) — Asymmetric multi-omics variational autoencoder for integrating single-cell data across RNA, ATAC, and protein modalities with missing-modality support.
- MOFA+ (⭐384) — Multi-Omics Factor Analysis framework identifying shared axes of variation across bulk and single-cell datasets including RNA, ATAC, proteomics, methylation, and copy number.
- GeneCompass (⭐111) — Large-scale foundation model integrating DNA regulatory sequences and single-cell transcriptomics from 120M+ cells across multiple species for gene regulation prediction.
- UnitedNet (⭐52) — Interpretable multi-task deep neural network for single-cell multi-omics integration spanning transcriptomics, chromatin accessibility, and proteomics.
- SpatialGlue — Graph attention network for spatial multi-omics integration jointly embedding spatial transcriptomics with chromatin accessibility or proteomics.
- MIDAS (⭐62) — Mosaic integration and differential accessibility model for single-cell multi-omics data that handles arbitrary missing-modality combinations across transcriptomics, chromatin accessibility, and proteomics.
Single-cell Foundation Models / Domain Alignment
- scArches (⭐399) — Transfer learning framework for mapping new single-cell datasets onto pre-trained reference atlases across batches, conditions, and modalities.
- TOSICA — Transformer-based framework for one-stop interpretable cell-type annotation supporting cross-dataset and cross-species transfer.
Protein Foundation Models / Protein Structure Prediction and Design
- AlphaFold3 (⭐7.7k) — Predicts structures of proteins, nucleic acids, small molecules, and their complexes.
- Boltz-1 (⭐3.8k) — Open-source all-atom biomolecular structure prediction model for proteins, nucleic acids, small molecules, and their complexes achieving AlphaFold3-level accuracy.
- Chai-1 (⭐1.9k) — Unified molecular structure prediction model covering proteins, nucleic acids, small molecules, and complexes.
- ESM3 (⭐2.3k) — Multimodal protein language model that jointly reasons over sequence, structure, and function for generative protein design and engineering.
- ESMFold (⭐4k) — Fast protein structure prediction using language model embeddings.
- RFdiffusion (⭐2.8k) — Generative model for protein backbone design using diffusion.
- ProteinMPNN (⭐1.6k) — Deep learning model for protein sequence design given backbone structure.
- OmegaFold (⭐613) — High-resolution de novo protein structure prediction from sequence.
- RoseTTAFold (⭐2.2k) — Three-track neural network for protein structure prediction.
Multi-Modal Foundation Models / Protein Structure Prediction and Design
- CHIEF (⭐688) — Clinical Histopathology Imaging Evaluation Foundation model integrating histology images and clinical context for pan-cancer analysis.
- BiomedCLIP — CLIP-based vision-language foundation model for biomedical images and text trained on PubMed figure–caption pairs.
Genomics Foundation Models / Protein Structure Prediction and Design
- Nucleotide Transformer (⭐831) — Foundation model for genomic sequences across multiple species.
- DNABERT (⭐744) — Pre-trained bidirectional encoder for DNA sequence analysis.
- DNABERT-2 (⭐460) — Improved genome foundation model with efficient tokenization.
- Enformer (⭐15k) — Transformer model predicting gene expression from DNA sequence.
- Basenji (⭐466) — Sequential regulatory activity prediction from DNA sequences.
- Caduceus (⭐226) — Bidirectional equivariant long-range DNA sequence model based on Mamba.
- Evo (⭐1.5k) — Long-context genomic foundation model (up to 1M tokens).
- HyenaDNA (⭐764) — Long-range genomic foundation model handling sequences up to 1M tokens with sub-quadratic attention.
34. Awesome Terraform
Tools / Community providers
- cloud-audit (⭐3) - AWS security auditing CLI with remediation engine that generates Terraform code for fixing misconfigurations.
- ReleaseRun Terraform Provider Matrix - Free browser tool to check Terraform provider version compatibility across Terraform and OpenTofu versions.
- terraform-ai-skills (⭐1) - AI-powered skill for GitHub Copilot, Claude, and ChatGPT that automates bulk Terraform module management — provider upgrades, workflow standardization, and releases across 10–200+ repositories on AWS, GCP, Azure, and DigitalOcean.
35. Awesome Claude Code
Agent Skills 🤖 / General
- Claude Scientific Skills (⭐11k) by K-Dense - "A set of ready-to-use Agent Skills for research, science, engineering, analysis, finance and writing." That's their description - modest, simple. That's how you can tell this is really one of the best skills repos on GitHub. If you've ever thought about getting a PhD... just read all of these documents instead. Also I think it IS an AI agent or something? Awesome.
Hooks 🪝 / General
- parry (⭐3) by Dmytro Onypko - Prompt injection scanner for Claude Code hooks. Scans tool inputs and outputs for injection attacks, secrets, and data exfiltration attempts. [NOTE: Early development phase but worth a look.].
Slash-Commands 🔪 / Version Control & Git
- /fix-issue (⭐46k) by metabase - Addresses GitHub issues by taking issue number as parameter, analyzing context, implementing solution, and testing/validating the fix for proper integration.
- /fix-pr (⭐46k) by metabase - Fetches and fixes unresolved PR comments by automatically retrieving feedback, addressing reviewer concerns, making targeted code improvements, and streamlining the review process.
Slash-Commands 🔪 / Code Analysis & Testing
- /check (⭐22) by rygwdn - Performs comprehensive code quality and security checks, featuring static analysis integration, security vulnerability scanning, code style enforcement, and detailed reporting.
- /repro-issue (⭐5) by rzykov - Creates reproducible test cases for GitHub issues, ensuring tests fail reliably and documenting clear reproduction steps for developers.
Slash-Commands 🔪 / Context Loading & Priming
- /load_coo_context (⭐1) by Mjvolk3 - References specific files for sparse matrix operations, explains transform usage, compares with previous approaches, and sets data formatting context for development.
- /load_dango_pipeline (⭐1) by Mjvolk3 - Sets context for model training by referencing pipeline files, establishing working context, and preparing for pipeline work with relevant documentation.
- /prime (⭐33) by yzyydev - Sets up initial project context by viewing directory structure and reading key files, creating standardized context with directory visualization and key documentation focus.
- /rsi (⭐3) by ddisisto - Reads all commands and key project files to optimize AI-assisted development by streamlining the process, loading command context, and setting up for better development workflow.
Slash-Commands 🔪 / CI / Deployment
- /release (⭐5) by kelp - Manages software releases by updating changelogs, reviewing README changes, evaluating version increments, and documenting release changes for better version tracking.
Slash-Commands 🔪 / Miscellaneous
- /mermaid (⭐44) by GaloyMoney - Generates Mermaid diagrams from SQL schema files, creating entity relationship diagrams with table properties, validating diagram compilation, and ensuring complete entity coverage.
CLAUDE.md Files 📂 / Language-Specific
- Metabase (⭐46k) by metabase - Details workflow for REPL-driven development in Clojure/ClojureScript with emphasis on incremental development, testing, and step-by-step approach for feature implementation.
CLAUDE.md Files 📂 / Domain-Specific
- Cursor Tools (⭐4.7k) by eastlondoner - Creates a versatile AI command interface supporting multiple providers and models with flexible command options and browser automation through "Stagehand" feature.
Alternative Clients 📱 / General
- Omnara (⭐2.6k) by Ishaan Sehgal - A command center for AI agents that syncs Claude Code sessions across terminal, web, and mobile. Allows for remote monitoring, human-in-the-loop interaction, and team collaboration.
36. Awesome Math
Youtube Series
37. Awesome Testing
Software / Visual Testing
- Frostbyte Screenshot Action (⭐0) - GitHub Action for automated website screenshots in CI/CD pipelines. Supports multiple viewports, full-page capture, and dark mode emulation.
Software / Browser Extensions & Utilities
- Anchor Browser - Cloud browser infrastructure with built-in stealth and proxy rotation for automated testing at scale
38. Awesome Python
Code Analysis
- Code Analysis
- code-graph-rag (⭐2k) - Builds knowledge graphs from multi-language codebases using Tree-sitter and Memgraph, enabling natural language querying of code structure.
- code2flow (⭐4.5k) - Turn your Python and JavaScript code into DOT flowcharts.
- prospector (⭐2.1k) - A tool to analyze Python code.
- vulture (⭐4.3k) - A tool for finding and analyzing dead Python code.
Machine Learning
- Instructor (⭐12k) - A library for extracting structured data from LLMs, powered by Pydantic.
Specific Formats Processing
- PDF
- pdf_oxide (⭐95) - A fast PDF library for text extraction, image extraction, and markdown conversion, powered by Rust.
- pdfminer.six (⭐6.9k) - Pdfminer.six is a community maintained fork of the original PDFMiner.
- pikepdf (⭐2.7k) - A powerful library for reading and editing PDF files, based on qpdf.
- PyPDF2 (⭐9.8k) - A library capable of splitting, merging and transforming PDF pages.
- ReportLab - Allowing Rapid creation of rich PDF documents.
39. Free for Dev
APIs, Data, and ML
- Compare JSON - An online tool for comparing differences between two JSON data structures, helping you quickly locate the differences in JSON data.
- HS Ping - A multi-country HS (Harmonized System) and HTS (Harmonized Tariff System) code lookup API, with a free plan offering 100 lookups/day.
Tools for Teams and Collaboration
- cDox — Private document editor hosted in Canada. Write, format, collaborate, and publish documents with clean public links. Data is never used for AI training. Free plan includes 50 MB storage, up to 3 public links, and export to PDF, Word, and Markdown.
Monitoring
- FlareWarden - Uptime, content, dependency, and SSL monitoring with multi-region verification and status pages. Free plan includes 15 monitors, 5-minute checks, and 90 days of history.
Generative AI
- Lumenfall.ai - AI media gateway providing unified access to leading image generation models via an OpenAI-compatible API. The platform itself is free to use with zero markup and no subscription fee. Inference costs for most models are billed at provider price, but FLUX.1 [schnell] FP8 is offered free forever with unlimited usage for registered users. Built-in failover and provider resilience included.
Storage and Media Processing
- FileShot.io — Zero-knowledge encrypted file sharing. AES-256-GCM browser-side encryption ensures files are encrypted in-browser before upload. No account required for sender or recipient. Self-hostable (MIT open-source). Free tier includes unlimited uploads with no file size restrictions.
IDE and Code Editing
- OnlineGDB - A free online ide thats supports 40+ languages and is pre installed with tons of libraries; and also has a debugging option, flags, tutorials, and a QNA page!
Miscellaneous
- SYNCDATE - Two-way Google Calendar sync. Free tier: 2 accounts, unlimited events.
40. Awesome Ai in Finance
LLMs
- FinRpt - Dataset, Evaluation System and LLM-based Multi-agent Framework for Equity Research Report Generation.
41. Awesome Regression Testing
Tools and frameworks (a-z↓)
- BitDive - BitDive is a zero-code regression testing tool for Java/Kotlin applications. It captures real runtime behavior (methods, SQL, HTTP) and enables Live Context Replay with automatic mocking to detect semantic drift between versions.
- BFFless - Self-hosted platform for hosting and viewing visual regression screenshots from CI/CD pipelines with GitHub Actions integration.
Online services (a-z↓)
- Keploy - Open-source regression testing tool that automatically generates test cases and mocks from real API calls.
- Sherlo (⭐73) - Visual testing platform for React Native Storybook. Captures screenshots on iOS and Android simulators in the cloud and detects visual changes automatically.
Blog posts (a-z↓)
- CodeLift: Introduction to Diffy for Visual Regression Testing - Catch visual and functional issues before they reach production.
42. Awesome Ruby
Business logic
- Servactory (⭐34) - A set of tools for building reliable service objects of any complexity.
43. Awesome Go
Artificial Intelligence
- hotplex (⭐7) - AI Agent runtime engine with long-lived sessions for Claude Code, OpenCode, pi-mono and other CLI AI tools. Provides full-duplex streaming, multi-platform integrations, and secure sandbox.
Audio and Music
- music-theory (⭐452) - Music theory models in Go.
Advanced Console UIs
- phoenix (⭐17) - High-performance TUI framework with Elm-inspired architecture, perfect Unicode rendering, and zero-allocation event system.
Miscellaneous Data Structures and Algorithms
- combo (⭐2) - Combinatorial operations including permutations, combinations, and combinations-with-replacement.
SQL Query Builders
- relica (⭐7) - Type-safe database query builder with zero production dependencies, LRU statement cache, batch operations, and support for JOINs, subqueries, CTEs, and window functions.
Generators
- protoc-gen-httpgo (⭐17) - Generate HTTP server and client from protobuf.
Job Scheduler
- pending (⭐3) - ID-based debounced task scheduler for deferred tasks with cancellation, graceful shutdown, and optional concurrency limits.
Uncategorized
- goffi (⭐22) - Pure Go FFI with libffi-style typed call interface and structured error handling for calling C libraries without CGO.
Stream Processing
- signals (⭐9) - Type-safe reactive state management inspired by Angular Signals with computed values, effects, and dependency tracking.
Utility/Miscellaneous
- uniwidth (⭐4) - High-performance Unicode character width calculation with SWAR optimization, O(1) lookup tables, and ZWJ emoji support.
Utilities
- go-safecast (⭐83) - Safe number type conversion library that prevents integer overflow and underflow (addresses gosec G115 and CWE-190).
- godoclive (⭐17) - Generates interactive API documentation from Go HTTP handlers using static analysis of chi, gin, and net/http routers.
Routers / Libraries for creating HTTP middlewares
- fursy (⭐1) - HTTP router with type-safe generic handlers, automatic OpenAPI 3.1 generation from code, and RFC 9457 error responses.
Windows / Libraries for creating HTTP middlewares
- windowsupdate (⭐14) - A Golang binding for Windows Update Agent API using go-ole.
Go Tools / Libraries for creating HTTP middlewares
- govisual (⭐677) - Zero-config, pure-Go HTTP request visualizer & debugger for local Go web development.
Conferences / Libraries for creating HTTP middlewares
- GopherCon China - Shanghai, China.
44. Awesome Rust
Applications
- ad-si/Woxi (⭐511) [woxi] - An interpreter for the Wolfram Language powered by Rust.
- temps (⭐225) - A self-hosted PaaS that replaces Vercel, analytics, error tracking, and uptime monitoring with a single Rust binary
Applications / Database
- sabiql (⭐124) [sabiql] - A fast, driver-less TUI to browse, query, and edit PostgreSQL databases.
Applications / File manager
- moyangzhan/mango-finder (⭐209) - Search your files using nature language
Applications / Finance
- nautechsystems/nautilus_trader (⭐20k) - A high-performance, production-grade algorithmic trading platform written in Rust and Python.
Applications / Industrial automation
- dora-rs/dora (⭐3k) [dora-cli] - A fast and simple dataflow-oriented framework for building robotic and multi-AI applications, with Python, Rust, and C/C++ APIs
Applications / Productivity
- max-sixty/worktrunk (⭐2.8k) [worktrunk] - CLI for git worktree management designed for running AI agents in parallel, with hooks, LLM commit messages, and merge workflows
Applications / Security tools
- EFForg/rayhunter (⭐4.7k) - IMSI catcher detection tool designed to run on mobile hotspot hardware, helping users identify potential cellular surveillance (Stingray/cell-site simulators)
- sherlock (⭐52) [sherlock] - Hunt down social media accounts by username across social networks
Applications / System tools
- git-ai-project/git-ai (⭐1.2k) - A git extension that tracks AI-generated code in your repositories, linking lines to the agent, model, and transcripts.
- sharkdp/hexyl (⭐10k) [hexyl] - A command-line hex viewer with colored output for different byte categories
Applications / Text editors
- Inkwell (⭐64) - A portable, offline-first Markdown editor built with Tauri v2. Single executable, zero telemetry.
Applications / Utilities
- ruvnet/RuView (⭐28k) - A privacy-preserving human pose estimation system using WiFi Channel State Information (CSI) and machine learning.
Applications / Web
- agrinman/tunnelto (⭐6.1k) [tunnelto] - Lets you expose your locally running web server via a public URL.
Development tools / Workflow Automation
- block/goose (⭐32k) - An open-source, local AI agent that automates engineering tasks.
- j178/prek (⭐6.7k) - A faster, dependency-free, and drop-in alternative to pre-commit, written in Rust.
Development tools / Build system
- rolldown/rolldown (⭐13k) - A JavaScript/TypeScript bundler written in Rust intended to serve as the future bundler in Vite.
Libraries / Artificial Intelligence
- raphaelmansuy/edgequake (⭐1.3k) - A high-performance Graph-RAG framework that transforms documents into intelligent knowledge graphs.
- liquidos-ai/AutoAgents (⭐423) [AutoAgents] - Multi Agent Framework for building AI agents with native edge support.
Libraries / Game development
- Game Engines
- AscendingCreations/AscendingGraphics (⭐12) - A 2D Rendering Framework using WGPU and Winit. -
- Bevy (⭐45k) - is a refreshingly simple data-driven game engine. -
- Fyrox - Game engine 3D
- ggez (⭐4.6k) - A lightweight game framework for making 2D games with minimum friction -
- Kiss3d (⭐1.6k) - A Keep It Simple, Stupid 3d graphics engine
- oxidator (⭐342) - A real time strategy game/engine supporting WebGPU
- Piston -
- Unrust (⭐382) - Webgl 2.0 / native game engine
- AscendingCreations/AscendingGraphics (⭐12) - A 2D Rendering Framework using WGPU and Winit. -
Libraries / GUI
- longbridge/gpui-component (⭐11k) [gpui-component] - UI components for building fantastic desktop applications using GPUI.
Libraries / Network programming
- RPC
- remoc-rs/remoc (⭐221) [remoc] - Remoc provides channels (broadcast, mpsc, oneshot, watch) similar to Tokio's and trait calling over any remote transport.
- smallnest/rpcx-rs (⭐134) - A RPC library for developing microservices in easy and simple way.
- remoc-rs/remoc (⭐221) [remoc] - Remoc provides channels (broadcast, mpsc, oneshot, watch) similar to Tokio's and trait calling over any remote transport.
45. Awesome Mac
Reading and Writing Tools / Markdown Tools
- Pixley Reader (⭐4) - A dedicated reader for browsing Markdown specs, docs, and changelogs generated by AI tools.
Reading and Writing Tools / Note-taking
- Zettel (⭐48) - Minimal, distraction-free note-taking app with Markdown and hashtag-based organization.
Developer Tools / Developer Utilities
- AXe (⭐1.4k) - CLI tool for controlling iOS Simulators through Accessibility APIs and HID automation.
- Swifka (⭐22) - Read-only Kafka monitor for safely inspecting topics, messages, and consumer state.
Voice-to-Text / Audio Record and Process
- OpenTypeless (⭐15) - Open-source AI voice input for desktop. Press a hotkey, speak, and get AI-polished text typed into any app. Supports 6+ STT providers (Whisper, Groq, Deepgram) and multiple LLMs (GPT, Claude, Gemini, Ollama).
Browsers / Audio Record and Process
- Tabbit - An AI-native browser that understands your context, chats with webpages, and automates tasks.
Translation Tools / Audio Record and Process
- ScreenTranslate - Capture any area or select text to translate instantly, fully on-device.
Proxy and VPN Tools / Audio Record and Process
- VPN Bypass (⭐42) - Menu bar app to route specific domains and services around your VPN.
Utilities / Menu Bar Tools
- Atoll (⭐1.1k) - Turns the notch into a Dynamic Island-style hub for media controls, live activities, and quick utilities.
- Mask This - Menu bar app that masks sensitive information in the clipboard.
Utilities / Cleanup and Uninstall
- ClearDisk (⭐39) - Visualize and clean developer caches to quickly reclaim disk space.
Utilities / File Organization Tools
- AppPorts (⭐706) - One-click tool to move apps from
/Applicationsto external storage while keeping local launch entries via links.
Utilities / Window Management
- Convoker (⭐3) - Type an app name, press Enter, all its windows come to you.
QuickLook Plugins / System Related Tools
- FluxMarkdown (⭐56) - Quick Look extension for instant Markdown previews in Finder with Mermaid, KaTeX, GFM, TOC, and charts.
- Torrent Preview (⭐7) - Quick Look extension for previewing
.torrentcontents in Finder, including files, trackers, and metadata.
46. Awesome Neovim
LSP / Diagnostics
- Kurama622/clean-diagnostic (⭐4) - Display diagnostic count using virtual text, and show diagnostic details in a floating window.
Startup / Cursorline
- Kurama622/profile.nvim (⭐70) - A dashboard, similar to GitHub homepage.
- leo-alvarenga/homecoming.nvim (⭐3) - A dead-simple, customizable and cozy dashboard with sane defaults and zero config required.
Debugging / CSV Files
- evanmcpheron/rocketlog.nvim (⭐2) - Seamlessly add logging for JavaScript and TypeScript files, with log and metadata searching.
Code Runner / Quickfix
- hadishahpuri/nvimlaunch (⭐2) - Define, run, and manage project-specific commands.
- mikeboiko/nvim-flow (⭐3) - File-scoped command runner with YAML configuration, command preview, debug integration, and traceback quickfix.
Database / Automation
- joryeugene/dadbod-grip.nvim (⭐4) - Database editor with inline cell editing, staged mutations with live SQL preview, schema browser, DDL, AI SQL generation, FK navigation, and DuckDB/Parquet support.
47. Awesome Bash
Just for fun
- Bash Screensavers (⭐893) - A collection of screensavers written entirely in bash.
48. Awesome Bitcoin
Utilities
- BTC Airgap Bridge (⭐3) - 100% client-side tool for broadcasting signed Bitcoin transactions from air-gapped wallets.
- SuperScalar MCP (⭐0) - MCP server for SuperScalar Bitcoin Lightning channel factories — onboard N users in one shared UTXO, no soft fork required.
Additional Resources
- Knowing Bitcoin - Comprehensive Bitcoin education with 214+ in-depth guides on Lightning Network, wallets, security, privacy, and nodes.
49. Awesome Mongodb
Tools / Development
- sql-to-mongo-db-query-converter (⭐318) - Query converter from SQL to MongoDB
Applications / Web
- LastSaaS (⭐43) - Open-source SaaS platform foundation with multi-tenant auth, Stripe billing, and MCP server, built with Go and MongoDB
50. Static Analysis
Multiple languages / Other
- Skylos (⭐323) — Dead code detection, security scanning, secrets detection, and code quality analysis for Python, TypeScript, and Go. Framework-aware analysis with 98% recall. Includes CI/CD GitHub Action, VS Code extension, and MCP server for AI agent integration.
51. Awesome Datascience
Tools
- Frostbyte MCP (⭐0) - MCP server providing 13 data tools for AI agents: real-time crypto prices, IP geolocation, DNS lookups, web scraping to markdown, code execution, and screenshots. One API key for 40+ services.
Datasets / Book Deals (Affiliated)
- GBIF - Global Biodiversity Information Facility: 2.4B+ species occurrence records. Free, open API for ecological modeling and ML research.
- FAOSTAT - UN FAO statistics on food production, trade, land use, and emissions for 245+ countries. Free API and bulk download.
52. Awesome Cakephp
Authentication and Authorization
- CakeVerification plugin (⭐0) - Two-factor verification supporting email OTP, email magic link, SMS OTP, and TOTP (Google Authenticator).
- Next: Mar 02 - Mar 08, 2026