An open API service indexing awesome lists of open source software.

C++

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.

https://github.com/afnanenayet/tiny-c

Work from my compilers class, in which we implemented an AST, a few optimizations, and linear scan register allocation for a subset of the C language.

assembly ast bison c compilers cpp flex lex llvm optimization yacc

Last synced: 14 Aug 2025

https://github.com/mazkdevf/hashminder

HashMinder is the ultimate application for security-conscious professionals and privacy-focused individuals alike.

checker cpp fast hashes hashminder javascript js md5 sha256 sha384

Last synced: 04 Oct 2025

https://github.com/breezewish/jitplot

Ultra fast plot drawer using JIT and SIMD technologies. Course Homework.

cpp jit shunting-yard-algorithm simd

Last synced: 22 Mar 2025

https://github.com/mtayyabrawan/tic-tac-toe-cpp

TIC TAC TOE Game Using OOP (cpp)

cpp game oop tic-tac-toe

Last synced: 04 Aug 2025

https://github.com/foo-dogsquared/automate-md

A CLI program that manages the frontmatter of your Jekyll or Hugo posts without manually entering into your text editor.

automation cpp cpp14 frontmatter hugo jekyll markdown

Last synced: 11 Apr 2026

https://github.com/pmalek/quick

quick aims to be a small header only library to help black box testing in C++

blackbox-testing cpp cpp14 testing

Last synced: 03 Apr 2025

https://github.com/mukeshlilawat1/cpp-projects

This is a basic C++ project developed to practice fundamental concepts of C++ programming such as data types, conditionals, loops, functions, file handling, and object-oriented programming. The project runs on the command line and is easy to understand for beginners.

cpp cpp-library

Last synced: 04 Oct 2025

https://github.com/jordymail/fire-and-smoke-detection-esp32

IoT-based environmental monitoring system using an ESP32 microcontroller. It integrates sensors for temperature, humidity, smoke, carbon monoxide (CO), and dust.

cpp detections fire fire-and-smoke-detection internet-of-things mqtt-broker sensors smoke

Last synced: 01 Jul 2025

https://github.com/claby2/clavim

A text editor that I do not intend on using.

catch2 cpp sdl2 sdl2-ttf text-editor

Last synced: 16 Aug 2025

https://github.com/berndporr/rplidar_rpi

Slamtec RPLIDAR with a Raspberry PI

cpp driver lidar lidar-measurements slamtec slamtec-rplidar

Last synced: 26 Apr 2025

https://github.com/tomasmark79/dotnamecpp

A keyboard-driven, CMake-based C++ template for VSCode. It automates the full dev cycle (configure, build, test, format, docs, package) via shortcuts and works cross-platform.

boilerplate-template cmake compiler conan cpp cross cross-platform emscripten exe gcc modern-cpp project-template toolchain vscode wasm

Last synced: 02 May 2026

https://github.com/erikengervall/fast-find-in-files

Node.js library written in C++ for text in file search

cpp javascript native-module nodejs typescript

Last synced: 27 Apr 2025

https://github.com/zhaocc1106/modern_cpp_concurrent

现代c++并发编程(线程管理,线程共享数据,线程同步,原子变量,内存模型与顺序,线程池...)

cpp thread-pool

Last synced: 23 Mar 2025

https://github.com/rutujar/cppcheck-c-cpp-demo

cppcheck is a static analysis tool that detect the bug in c and cpp.

c cpp cppcheck qmake travis-ci

Last synced: 14 Jul 2025

https://github.com/mahi97/c-compiler

C Compiler Write in CPP and Qt

asm c cpp qt

Last synced: 19 Apr 2026

https://github.com/jdsherbert/unreal-engine-interaction-system

Simple implementation of an Interaction System for Unreal Engine. Utilises two components that communicate with each other through an interface.

cpp unreal unreal-engine unreal-engine-4 unreal-engine-5 unrealengine

Last synced: 07 Apr 2025

https://github.com/umar-masood/modern-stylish-ui-components

This is a carefully crafted set of modern, stylish UI components designed using Qt C++ and Qt Style Sheets (QSS) — delivering a clean, responsive, and highly customizable user interface experience. Inspired by contemporary design systems like Material Design and Fluent UI,.

app-compoents app-ui-elements cmake cpp cross-platform css modern-design-app modern-ui modern-ui-components modern-ux qss qt qt-cpp qt6

Last synced: 02 Sep 2025

https://github.com/cooptocracy/tiny-blockchain

The objective of this repository is to bring you the basic implementation of `Blockchain` in various languages.

blockchain blockchain-technology c cpp csharp dlt fsharp go golang java js python ruby rust ts

Last synced: 10 Apr 2026

https://github.com/im-rises/gameboyemulator

Game Boy Emulator made in C++.

cplusplus cpp emulator gameboy games

Last synced: 18 Aug 2025

https://github.com/simone-contorno/rt2-assignment

Research Track 2 - Assignment - Control of a robot in a simulated environment using Gazebo, Rviz and, for the User Interface, Jupyter Notebook.

cpp engineering jupyter-notebook python robot robotics ros

Last synced: 11 Apr 2026

https://github.com/djkovrik/smhc

Hotmail Checker [C++, wxWidgets, libCURL].

cpp wxwidgets

Last synced: 19 Aug 2025

https://github.com/skywa04885/fsmtp-server

Complete Extended SMTP Server for low-end devices, such as an Raspberry Pi

c cmake cpp esmtp linux raspberry-pi server smtp

Last synced: 10 Apr 2026

https://github.com/aermoss/aencpp

A programming language made with C++.

aenc aencpp cpp programming-language

Last synced: 19 Aug 2025

https://github.com/oir/tblr

One header library for easy pretty printing of tables in C++. Supports markdown and latex.

cpp header-only pretty-print table tables

Last synced: 28 May 2026

https://github.com/rudraksh88/zephyr

Zephyr Window Decoration for KDE Plasma. Fork of BreezeEnhanced

breeze breeze-dark cpp kde kde-plasma plasma-theme plasma6 theme window-decorations zephyr

Last synced: 04 May 2025

https://github.com/ilieschibane/projet-algo

University project about time and space complexity of differents algorithms, data structure and NP problems

algorithms-and-data-structures complexity cpp np-problem

Last synced: 20 Aug 2025

https://github.com/hxndev/counting-alphabets-using-multithreading

Counting frequency of alphabets in the input file using Multithreading.

alphabets alphabets-counting code counting cpp multithreading threading

Last synced: 31 Mar 2025

https://github.com/hxndev/printer-spooling

Printers typically can print only a single document at a time and require seconds or minutes to do so. If more than one application requires printer’s access, it might result in delay and slow down the application for as long as the printer is busy in serving other application. Printer Spooling has overcome this delay, as the documents formatted for printing are stored into an area on a disk and retrieved and printed by a printer at its own rate. With spooling, multiple processes can write documents to a print queue without waiting. As soon as a process has written its document to the spool device, the process can perform other tasks, while a separate printing process operates the printer. In this project, we will be implementing a printer spooler for a working environment which is equipped with 3 printers using concepts of Linked Lists and Queues.

code cpp data-structures oop oop-principles printer printer-spooler printer-spooling spooling

Last synced: 31 Mar 2025

https://github.com/ayushs2k1/operating-systems-project

The project titled ROAD CONSTRUCTION USING HIGHWAY PLANNING AND OBSTRUCTION PREVENTION aims to address one of the major issues that the Indian road construction department is facing.

cpp cpu-scheduling deadlock-avoidance deadlock-detection djikstra-algorithm operating-systems priority-scheduling

Last synced: 24 Mar 2025

https://github.com/jeddyhhh/ziptie

A web interface for llama.cpp cli written in js, jQuery and php.

cpp ggml jquery js llama llamacpp llm php wsl ziptie

Last synced: 09 Apr 2026

https://github.com/nathady/segitiga-siku-siku-with-cpp-v1

bangun datar segitiga siku-siku dengan c++

cpp do-while-loop for-loop loop segitiga triangle while-loop

Last synced: 24 Mar 2025

https://github.com/nathady/segitiga-sama-kaki-with-cpp-v1

bangun datar segitiga siku-siku dengan c++

cpp for-loop loop segitiga triangle while-loop

Last synced: 24 Mar 2025

https://github.com/joakimthun/kiwi

A 3D software renderer written in c++

3d cpp rendering software-rendering

Last synced: 31 Mar 2025

https://github.com/openmined/syft.cpp

SOON TO BE DEPRECATED - A library for encrypted, privacy preserving machine learning

cpp cryptography deep-learning privacy pytorch secure-computation syft

Last synced: 02 Jul 2025

https://github.com/0xff-dev/for-an-offer

Just wait an offer, We want to be real programmer.

cpp go java leetcode python3 shell sql

Last synced: 19 Apr 2025

https://github.com/hxndev/search-integer-in-a-grid-using-divide-and-conquer

Divide and Conquer technique is used to work out different problems of varyying natures. Our problem at hand is to efficiently search an integer value from grid of size n x n, where n is any integer, using the principles of divide and conquer. The grid has both it's rows as well as columns sorted in ascending order.

algortihm code complexity cpp divide-and-conquer grid integer search time-complexity-analysis

Last synced: 24 Aug 2025

https://github.com/flexidriod/packet-sniffer-security

🚀 Internet Packet Sniffer - Advanced Network Traffic Analyzer 🔍

cpp forensics-tools intrusion-detection network-analysis npcap-sdk packet-capture packet-sniffer windows-11

Last synced: 02 May 2026

https://github.com/definetlynotai/llm_data

A bunch of very famous repos source code's in python as pure localdocs all in this repo to train CODE AI

c code-examples cpp cuda data data-dum jupyter-notebook llm llm-code llm-datasets programming-data programming-data-sets python3

Last synced: 08 Oct 2025

https://github.com/qubik65536/competitive-programming

My Solutions in C++ or Java (Sometimes Both) & Problem Analysis (Sometimes) for Competitive Programming Problems (Generally USACO and Canadian Computing Competition)

canadian-computing-competition ccc ccc-solutions cpp cpp17 java java-8 usaco usaco-solutions

Last synced: 05 Feb 2026

https://github.com/ron4fun/simplebaselib4cpp

SimpleBaseLib4CPP is a simple C++11 Base Encoding library that provides at the moment support for encoding and decoding various bases such as Base16, Base32 (various variants), Base58 (various variants), Base64 (various variants).

base16 base32 base58 base64 cplusplus cpp encoding

Last synced: 09 Oct 2025

https://github.com/shibam120302/leetcode

I try to upload the daily code which i practice daily in LEETCODE

cpp dailychallenges dsa java leetcode leetcode-solutions

Last synced: 18 Jan 2026

https://github.com/jofaval/babylon

Microservices using mutliple languages (as with Babylon's tower) for a fake e-commerce

api babylon cloud cpp django dotnet e-commerce flask golang java laravel microfrontend microfrontends microservices php python rust software-engineering spring-boot typescript

Last synced: 17 Feb 2026

https://github.com/ahmed-khaled-dev/problem_solving

This is for documenting my code solutions for all the problems that i solve mainly on Code forces/acmASCIS's Sheets

acm codeforces cpp problem-solving

Last synced: 10 Oct 2025

https://github.com/uriegel/registry-changes-detector

Node.js addon to detect changes in Windows Registry

cpp electron nodejs windows

Last synced: 21 Jan 2026

https://github.com/luncliff/ssf

simple socket functions

cmake-examples cpp example-repo

Last synced: 12 Oct 2025

https://github.com/commoncriteria/wids

Protection Profile Module for Wireless Intrusion Detection Systems

cpp extends-netdevice niap pp-module

Last synced: 19 Jan 2026

https://github.com/kid0h/kidcurl

A Curl wrapper for kids!

cpp libcurl wrapper

Last synced: 18 Feb 2026

https://github.com/amr-khaled-ahmed/fcai-cairo-university-fraction-calculator-

this repo made to do basic mathematical operations for the fractions

calculator contribution cpp fractional-calculus

Last synced: 13 Oct 2025

https://github.com/demorgan104/dat

Technology development platform for the modern C/C++ developer

artifactory bazel c conan cpp devops embedded-systems prototyping

Last synced: 13 Oct 2025

https://github.com/kennek4/helix

A pixel art focused sprite editor

cpp spriteeditor

Last synced: 14 Oct 2025

https://github.com/kotleni/glengine

Cpp 3d OpenGL game engine. Early WIP.

cpp engine glsl opengl render sdl2

Last synced: 24 Feb 2026

https://github.com/andrefelipebarros/jogo-da-lha-15x15

🏝️Project developed using Vector and Matrix, during the course of college algorithms.

algorithms cpp game-development matrix type-game vector

Last synced: 31 May 2026

https://github.com/mubeen-channa/cpp-programs

Daily C++ Programs: A collection of daily C++ coding exercises and solutions to help you practice and improve your programming skills.

competitive-programming contributions-welcome cpp cpp-programs mubeen-channa mubeenchanna programs-practice

Last synced: 14 Oct 2025

https://github.com/priyanshu360-cpu/arduino-vehicle

A Bluetooth vehicle made with arduino circuits

arduino bluetooth cpp cpp17 rc

Last synced: 15 Apr 2026

https://github.com/jfalcou/nucog

High-Level DSEL for designing C++ numerical code

cpp cpp17 dsl hpc numerical-calculations

Last synced: 17 Oct 2025

https://github.com/stefanjohnsen/wavefrontobj

Wavefront OBJ parser C++ 11

cpp cpp11 header-only obj wavefront wavefront-obj

Last synced: 20 Oct 2025

https://github.com/andrewrgarcia/streamdice

StreamDice++ is a C++ message encryption program running on a unique stream cipher that I invented

block ciphers ciphertext cpp encryption hacktoberfest hashmaps password secret-messages stream-cipher

Last synced: 23 Jan 2026

https://github.com/akhilrai28/internet-of-things

Developed under Makernova 2.0, this project explores microcontroller programming, sensor data logging, and communication protocols (MQTT, COAP, HTTP). It includes simulations in Proteus and app development using MIT App Inventor/Flutter for data visualization and control.

c coap cpp css dart flutter html http iot javascript microcontroller mit-app-inventor mqtt proteus python sensor-data

Last synced: 25 Oct 2025

https://github.com/hxndev/chinese-whisper-problem-using-ipc

Chinese Whispers is a children's game (called Telephone in the US) in which children pass on what they think they've heard in a message whispered by another child.

chinese-whispers code cpp inter-process-communication ipc

Last synced: 25 Oct 2025

https://github.com/m0saan/cp

The repository contains solutions to CP problem from diffrent CP websites

bit-manipulation bitwise-operators competitive-programming cpp cpp11 cpp17

Last synced: 26 Oct 2025

https://github.com/samyam81/searching_mechanism

Searching in data structure refer to the process of finding the targetted information from a collection of items stored in computer memory.

cpp csharp java

Last synced: 18 Apr 2026

https://github.com/keithdhedger/docsets

Some doc sets for use with Zeal and other apps.

api bash cpp development docset gtk2 gtk3 python qt5 qt6 zeal

Last synced: 12 Feb 2026

https://github.com/tw1ddle/geometrize-lib-fuzzing

Fuzz testing harness for Geometrize, a library for geometrizing images into geometric primitives

art cpp cpp-library geometrize geometry geometry-processing hill-climbing

Last synced: 07 Feb 2026

https://github.com/chalet-org/chalet-docs

Chalet documentation website in NextJs

build-system c cpp cross-platform json mdx nextjs react

Last synced: 07 Feb 2026

https://github.com/chathumiamarasinghe/word-guessing-game

A fun and interactive word-guessing game designed to test your vocabulary and guessing skills! The game is built using Object-Oriented Programming (OOP) principles and includes dynamic features for an engaging user experience.

cli cpp procedural-programming wordguess-game

Last synced: 08 Feb 2026

https://github.com/atennop1/arkanoidwithoutanengine

Project for learning C++ through making game without an engine

cpp game game-development gamedev no-engine oop sdl2

Last synced: 09 Feb 2026

https://github.com/memergamer/graphtheory

In this repository there are graph theory exercises for my University.

cpp graph-algorithms graph-theory-algorithms python sapientia-university typescript

Last synced: 09 Feb 2026

https://github.com/qengineering/ncnn_pose_rpi_64-bits

ncnn pose estimation on bare Raspberry Pi 4 with 64-bit OS at 7.1 FPS

bare-raspberry-pi cpp high-fps ncnn ncnn-framework ncnn-model pose-estimation raspberry-pi-4 raspberry-pi-64-os

Last synced: 26 Feb 2026

https://github.com/fsandhei/yambs

Yet Another Meta Build System for C++, written in Rust

build-system cplusplus cpp

Last synced: 16 Apr 2026

https://github.com/gf712/pyml

Machine Learning algorithms in Python and C/C++ written from scratch using the respective standard libraries

cpp machine-learning python3

Last synced: 27 Feb 2026

https://github.com/Muslim-Programmers/QuranApp-Windows

Quran Application Windows Source Code

cpp islamic qt5 quran-app windows

Last synced: 12 Feb 2026

https://github.com/ujjwalsaini07/decryptorx_stealer

It is specialized repo for password cracking using WSA, IoT devices, and other modules. It focuses on breaking various protocols, offering a solution for security testing and vulnerability analysis in connected environments.

ardiuno cpp cracking-password cybersecurity github-actions go hacking iot ipaddress python workflow-automation

Last synced: 13 Feb 2026

https://github.com/khangvum/fileusage

A Windows console application that lists file usage by grouping files based on their extensions.

cpp cpp17 cpp20 file-extension file-extensions file-management file-manager file-scan file-scanner file-scanning file-size file-sizes file-usage filesystem fileusage

Last synced: 14 Feb 2026

https://github.com/smartherd/c-and-cpp-tutorial

Contains source code, exercises, code challenges, and quiz for C and C++ tutorial published on Youtube.

c c-plus-plus cpp

Last synced: 14 Feb 2026

https://github.com/killerasus/adaptive_shooter

The game developed as an implementation of the dynamic difficulty adaptivity algorithm described in my M.Sc. dissertation.

c-plus-plus clanlib cmake cpp game lua machine-learning

Last synced: 15 Feb 2026

https://github.com/danieldidiobalsamo/concurrent_execution_models

Rust / C++ Implementation of the three execution models used in concurrent programming

boost cpp dining-philosophers-problem fibers producer-consumer-problem readers-writers-problem rust

Last synced: 02 Mar 2026

https://github.com/nomissbowling/afewcam

virtual-camera for streaming OBS NDC TDL etc

c cpp ndc obs opencv streaming tdl virtual-camera

Last synced: 16 Apr 2026

https://github.com/arakilian0/about-me

cli outputs random facts about me

command-line cpp cross-platform executable random-facts yaml

Last synced: 16 Apr 2026

https://github.com/nicolachoquet06250/tools_library

Constitution d'une liste d'outils, répos, d'idées d'apps, challanges ou tout autre ressource pour s'améliorer en programmation peux importe son niveau.

clang cpp css golang java javascript nim-lang nodejs php python3 ruby rust shell typescript

Last synced: 01 Apr 2026

https://github.com/hifza-khalid/oop_odyssey

OOP Odyssey 🚀 | C++ Projects 💻 | Master OOP concepts: Encapsulation, Inheritance, Polymorphism, Diamond Problem, and more! 🛠️

abstraction cpp encapsulation inheritance-examples oop polymorphism

Last synced: 05 Mar 2026

https://github.com/defgameengine/defgameengine

defGameEngine is a cross-platform game engine. Available on Windows, Linux and (probably) MacOS. Requires C++20 or higher

cpp emscripten game game-dev game-development game-engine gles gles3 glfw glfw3 gui imgui imgui-glfw lua opengl opengl3 web

Last synced: 04 Apr 2026