awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjektÜber unsHow we rankPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
awesome-repositories.comBlog
Kategorien

9 Repos

Awesome GitHub RepositoriesControl Flow Optimization

Methods for simplifying complex conditional logic through polymorphism and encapsulation.

Distinguishing note: Candidates were limited to visual models or template engine logic, not general source code control flow.

Explore 9 awesome GitHub repositories matching software engineering & architecture · Control Flow Optimization. Refine with filters or upvote what's useful.

Awesome Control Flow Optimization GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • ryanmcdermott/clean-code-javascriptAvatar von ryanmcdermott

    ryanmcdermott/clean-code-javascript

    94,454Auf GitHub ansehen↗

    This project is a collection of engineering guidelines and best practices for writing readable and maintainable JavaScript source code. It serves as a clean code guide and refactoring manual to help developers improve the structure of their codebases. The repository provides a reference for applying SOLID principles to reduce coupling and enable extensions without modifying existing logic. It includes a naming convention standard for using explicit, searchable identifiers and a guide for asynchronous patterns to replace nested callbacks with clearer execution flows. The guidelines cover soft

    Guides the replacement of complex conditionals and type-checking with polymorphism to improve code clarity.

    JavaScriptbest-practicesclean-architectureclean-code
    Auf GitHub ansehen↗94,454
  • piotrplenik/clean-code-phpAvatar von piotrplenik

    piotrplenik/clean-code-php

    12,455Auf GitHub ansehen↗

    This project is a PHP clean code guide and software architecture reference. It provides a set of standards, naming conventions, and design patterns intended to improve the long-term maintainability and readability of PHP codebases. The guide emphasizes a structured approach to refactoring and system design, focusing on the application of SOLID principles to reduce coupling and increase extensibility. It advocates for object-oriented design through the use of composition over inheritance, the use of final classes to prevent unexpected overrides, and the implementation of strict type declaratio

    Simplifies complex conditional logic by utilizing polymorphism and early-return patterns.

    PHP
    Auf GitHub ansehen↗12,455
  • zakirullin/cognitive-loadAvatar von zakirullin

    zakirullin/cognitive-load

    12,288Auf GitHub ansehen↗

    This project is a collection of software engineering principles and architectural design patterns designed to minimize the mental effort required to understand and maintain source code. It serves as a guide for implementing clean code methodologies and architectural simplification to reduce the overall cognitive load on developers. The framework emphasizes aligning module boundaries and ubiquitous language with business stakeholders to prevent architectural ripple effects. It advocates for balancing service granularity to avoid the overhead of distributed monoliths and suggests favoring objec

    Employs early-return patterns to flatten nested logic and focus on the primary execution path.

    Auf GitHub ansehen↗12,288
  • webassembly/binaryenAvatar von WebAssembly

    WebAssembly/binaryen

    8,354Auf GitHub ansehen↗

    Binaryen is a WebAssembly compiler toolchain and optimizer designed to transform, validate, and shrink binary modules. It provides a comprehensive intermediate representation framework that converts binary code into a single-assignment form to enable advanced program analysis and code transformation. The project includes a specialized transformation engine that applies iterative optimization passes to increase execution speed and reduce binary size. Additionally, it functions as a transpiler that translates WebAssembly binary modules into executable JavaScript for environments that lack nativ

    Flattens the intermediate representation and regenerates the control flow graph to improve size and performance.

    WebAssemblyc-plus-pluscompilersemscripten
    Auf GitHub ansehen↗8,354
  • de4dot/de4dotAvatar von de4dot

    de4dot/de4dot

    7,428Auf GitHub ansehen↗

    de4dot is a .NET deobfuscator and unpacker designed to reverse obfuscation and restore readable code and metadata within .NET assemblies. It functions as a bytecode analyzer that simplifies control flow, strips anti-debugging protections, and extracts original payloads from packed executable wrappers. The project distinguishes itself through a modular deobfuscation pipeline and a sandbox environment used for dynamic string decryption, which executes decryption methods to replace encrypted strings with plain-text values. It can identify specific obfuscation tools through pattern-based binary a

    Simplifies Common Intermediate Language bytecode by removing obfuscated indirection and junk code to restore logical flow.

    C#
    Auf GitHub ansehen↗7,428
  • 0xd4d/de4dotAvatar von 0xd4d

    0xd4d/de4dot

    7,426Auf GitHub ansehen↗

    de4dot is a .NET deobfuscator, unpacker, and assembly analysis tool. It is designed to remove obfuscation layers, restore metadata, and simplify bytecode control flow to transform protected binaries back into human-readable code. The project features specialized systems for decrypting strings and constants using both static and dynamic analysis. It identifies specific protection tools through pattern-based detection and strips anti-analysis protections, such as tamper detection and anti-debugging code. The tool provides a suite of reverse engineering capabilities, including binary wrapper un

    Removes proxy methods and inlines split code to restore original .NET bytecode execution paths.

    C#
    Auf GitHub ansehen↗7,426
  • kaisery/trpl-zh-cnAvatar von KaiserY

    KaiserY/trpl-zh-cn

    5,501Auf GitHub ansehen↗

    Dieses Projekt ist eine lokalisierte Bildungsressource zum Erlernen der Programmiersprache Rust und bietet ein umfassendes Handbuch sowie technische Spezifikationen, die ins vereinfachte Chinesisch übersetzt wurden. Es dient als Lehrmittel zum Studium von Sprachidiomen, Speichermanagement und Typsystemen. Das Repository konzentriert sich auf die Lokalisierung von Softwaredokumentation und übersetzt offizielle Leitfäden ins vereinfachte Chinesisch, um die Zugänglichkeit für Nicht-Muttersprachler zu erhöhen. Es nutzt ein Markdown-basiertes System zur Organisation der Inhalte und unterstützt den Export in mehrere Formate wie statisches HTML, PDF und EPUB für die Web- und Offline-Ansicht. Der Inhalt deckt eine breite Palette technischer Rust-Domänen ab, einschließlich Speichermanagement-Primitiven wie Ownership und Borrowing, fortgeschrittenem Sprachdesign mit Traits und Generics sowie umfassenden Strategien zur Fehlerbehandlung. Zudem werden Programmiergrundlagen, Datenmodellierung und der Einsatz von Produktivitätstools für Build- und Dependency-Management detailliert beschrieben.

    Explains early-return patterns used to flatten code and reduce nesting.

    Markdownpdfrust-booktypst
    Auf GitHub ansehen↗5,501
  • github/swift-style-guideAvatar von github

    github/swift-style-guide

    4,762Auf GitHub ansehen↗

    Dieses Projekt ist eine Sammlung von Codierungsstandards, Architekturmustern und Richtlinien zur Typsicherheit für das Schreiben von Swift-Quellcode. Es bietet ein Framework zur Aufrechterhaltung von sauberem und wartbarem Code durch etablierte Konventionen und Formatierungsregeln. Der Leitfaden priorisiert Komposition gegenüber Klassenvererbung, indem er Werttypen (Value Types) und finale Klassen bevorzugt. Er etabliert eine Richtlinie für Zugriffskontrolle, um Grenzen zwischen interner Logik und externen Komponenten durch explizite Sichtbarkeitsmodifikatoren zu verwalten. Die Standards decken die Optimierung der Typsicherheit durch unveränderliche Bindungen (Immutable Bindings) und sichere Optional-Handhabung ab. Weitere Bereiche umfassen die Verwendung von Early-Exit-Mustern zur Optimierung des Logikflusses, die Reduzierung der Syntax-Ausführlichkeit und die Anwendung einer einheitlichen Code-Formatierung.

    Implements early-return patterns using guard statements to reduce nesting and handle edge cases efficiently.

    Auf GitHub ansehen↗4,762
  • microsoft/wilAvatar von microsoft

    microsoft/wil

    2,884Auf GitHub ansehen↗

    wil is a C++ wrapper library for the Windows API designed to simplify system development through RAII and exception handling. It provides a set of resource management tools, a framework for Windows error handling, and type-safe interfaces for registry access and networking. The library distinguishes itself by automating the conversion between system error codes and C++ exceptions, while providing utilities for contextual error message attachment and early return patterns. It also features specialized networking wrappers for socket initialization and hostname resolution, and a registry interfa

    Supports immediate return patterns upon encountering error codes to reduce code nesting.

    C++
    Auf GitHub ansehen↗2,884
  1. Home
  2. Software Engineering & Architecture
  3. Control Flow Optimization

Unter-Tags erkunden

  • CIL SimplificationSimplifying Common Intermediate Language (CIL) bytecode by removing obfuscated indirection. **Distinct from Control Flow Optimization:** Focuses on bytecode-level simplification rather than high-level source code optimization.
  • Early-Return PatternsProgramming techniques that exit functions immediately when conditions are met to reduce nesting. **Distinct from Control Flow Optimization:** Focuses on the specific early-return coding pattern rather than general control flow optimization through polymorphism.
  • IR Control Flow RewritingRegenerating the control flow graph from an intermediate representation to uncover optimizations. **Distinct from Control Flow Optimization:** Distinct from general Control Flow Optimization by focusing on the structural flattening and regeneration of the IR graph.