2 dépôts
Coding patterns and practices designed to prevent critical bugs, memory leaks, and concurrency errors.
Distinguishing note: Candidates are either language implementations or compilers, not engineering patterns for safety.
Explore 2 awesome GitHub repositories matching software engineering & architecture · Safety Engineering. Refine with filters or upvote what's useful.
This project is a curated collection of best practices, coding standards, and style guidelines for writing C++ source code. It serves as a software engineering resource focused on improving code safety, maintainability, and performance. The resource covers multiple domains of C++ development, including safety engineering to reduce bugs and memory errors, as well as code optimization for increased efficiency. It provides a set of collaborative guidelines for consistent code formatting and structural patterns across projects.
Implements specific C++ coding patterns to reduce bugs and prevent common memory or concurrency errors.
Heapless is an embedded Rust data structure library that provides statically allocated, fixed-capacity collections for memory-constrained systems. It implements a zero-allocation runtime model where all collection elements are stored inline within their own value structure, completely removing the need for operating system interaction, global allocators, or runtime heap allocation. Capacity is specified at compile time through generic type parameters, ensuring every collection has a fixed upper bound known before execution. The library implements core language traits to provide standard coll
Develops reliable code that eliminates common memory management errors by enforcing strict compile-time bounds and static sizing.