下拉刷新

Here you can read past volumes of HelloGitHub Monthly by category. You are currently viewing the HelloGitHub C++ collection.

1、
Diagon
Star 1.9k
Vol.108
4 months ago

Interactive ASCII Chart Generator. This is an interactive ASCII style chart generator that can convert expressions similar to Markdown into ASCII art form. It supports generating mathematical expressions, sequence diagrams, tree diagrams, tables, flowcharts, etc., and can export charts as WebAssembly for display and interaction on web pages.

Diagon
2、
ggwave
Star 6.4k
Vol.108
14 days ago

A Tool for Transmitting Data via Sound. This is an innovative tool for data transmission, capable of sending small amounts of data between devices using sound. It employs Frequency-Shift Keying (FSK) transmission protocol and incorporates Error-Correcting Codes (ECC) to enhance the reliability of data transmission, with a transfer speed of 8-16 bytes per second.

ggwave
Star 278
Vol.108
8 days ago

A Mini-Map Plugin for 'Black Myth: Wukong'. This is a real-time map plugin designed specifically for 'Black Myth: Wukong'. It is completely free and easy to install, supporting real-time location tracking, navigation, key point identification, and features like map zooming, shrinking, and hiding.

wukong-minimap
4、
champ
Star 1.8k
Vol.107
9 months ago

Open-Source Quadruped Robot Control Development Framework. This is an open-source development framework for quadruped robots, suitable for building quadruped robots and developing control algorithms. It provides lightweight header file libraries and a rich set of ROS tool packages, supporting full autonomous navigation, Gazebo simulation environments, and a variety of hardware platforms, offering developers a complete quadruped robot control framework and development tools.

champ
5、
cling
Star 3.8k
Vol.107
a month ago

Interactive C++ Development Environment. This is an interactive C++ interpreter built based on LLVM and Clang. It provides an intuitive interactive command-line interface, supporting the immediate writing, execution, and debugging of C++ code, and can be integrated with Jupyter.

cling
Star 5.3k
Vol.107
16 days ago

Versatile Windows Music Player. This project is a minimalist, compact, and versatile Windows local music player written in C++, supporting common audio formats, and providing features such as lyric display, karaoke mode, lyric editing, album cover display, spectrum analysis, and sound effect adjustments.

MusicPlayer2
Star 1.1k
Vol.106
4 days ago

A Video Player for Learning Japanese While Watching Videos. This is an open-source video player based on mpv, specifically designed for learning Japanese. It assists users in learning Japanese while watching videos, supporting features such as pop-up dictionaries, subtitle browsing, and the generation and synchronization of vocabulary cards.

Memento
8、
mixxx
Star 5.2k
Vol.106
in 3 hours

Free Open-Source DJ Mixing Software. This project is a professional-grade DJ software developed with C++, which is completely free. It offers a rich set of features and hardware compatibility, supports automatic BPM detection, real-time effect processing, recording, and streaming capabilities, and is applicable across Windows, macOS, and Linux platforms.

mixxx
Star 2.9k
Vol.106
2 months ago

High-performance HashMap Library. This project provides various high-performance, memory-friendly, and thread-safe hash table and B-tree container implementations. It is developed and optimized based on Google's Abseil library, supports the C++11 standard, and is available in header-only form, eliminating the need for compilation.

#include <iostream> #include <string> #include <parallel_hashmap/phmap.h> using phmap::flat_hash_map; int main() { flat_hash_map<std::string, std::string> nickname = { { "tom", "tomcat"}, { "jim", "jimoby"} }; for (const auto& n : nickname) std::cout << n.first << "'s nickname is: " << n.second << "\n"; email["bill"] = "hellogithub"; std::cout << "bill's nickname is: " << nickname["bill"] << "\n"; return 0; }
parallel-hashmap
10、
upx
Star 1.6w
Vol.106
3 days ago

Utility for Compressing Executable Files. This is an open-source tool for compressing executable files, supporting various executable file formats (Windows, Linux, macOS). It boasts an excellent compression ratio (50-70%), and the compressed files can be run directly, making it suitable for program distribution and large-scale storage scenarios.

upx