Last active
March 3, 2026 22:35
-
-
Save g-cqd/e3caf0ff1babbc85d909939e851ba23e to your computer and use it in GitHub Desktop.
Swift Libraries Inventory (g-cqd & aemi-studio)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "title": "swift-proto", | |
| "intent": "Swift macro library for protocol and mock generation", | |
| "goal": "Automate the alignment of protocols, concrete types, and mocks to reduce boilerplate and maintenance drift.", | |
| "url": "https://github.com/g-cqd/swift-proto", | |
| "intrinsic_added_value": "Eliminates manual synchronization between implementation and protocol contracts; provides compile-time generated mocks for enhanced test ergonomics." | |
| }, | |
| { | |
| "title": "InternedStrings", | |
| "intent": "Compile-time string obfuscation macro", | |
| "goal": "Protect sensitive string literals in binaries from casual inspection by obfuscating them at compile time.", | |
| "url": "https://github.com/g-cqd/InternedStrings", | |
| "intrinsic_added_value": "Zero-runtime-overhead obfuscation with a simple @Interned macro API; prevents plaintext leakage in the binary." | |
| }, | |
| { | |
| "title": "SwiftBlowfish", | |
| "intent": "Optimized Blowfish cipher implementation", | |
| "goal": "Provide a performance-tuned and 100% compliant Blowfish symmetric block cipher implementation in Swift.", | |
| "url": "https://github.com/g-cqd/SwiftBlowfish", | |
| "intrinsic_added_value": "Includes cache-optimized and reference implementations; verified against original C code; optimized for high-performance cryptographic operations." | |
| }, | |
| { | |
| "title": "CSVCoder", | |
| "intent": "Type-safe CSV encoding and decoding library", | |
| "goal": "Provide a Codable-based interface for CSV data with advanced features like streaming and parallel processing.", | |
| "url": "https://github.com/g-cqd/CSVCoder", | |
| "intrinsic_added_value": "SIMD-accelerated parsing; handles complex international formats; provides O(1) memory usage for processing massive datasets." | |
| }, | |
| { | |
| "title": "AemiSDR", | |
| "intent": "GPU-accelerated visual effects library for SwiftUI", | |
| "goal": "Enable high-performance, App Store-safe blurs, masks, and lens distortions in SwiftUI views.", | |
| "url": "https://github.com/Aemi-Studio/AemiSDR", | |
| "intrinsic_added_value": "Uses physically-based Metal shaders for premium visual effects; App Store compliant; simplifies complex graphics implementation." | |
| }, | |
| { | |
| "title": "DynamicIcon", | |
| "intent": "Runtime app icon management library", | |
| "goal": "Simplify the process of changing the application icon dynamically on iOS.", | |
| "url": "https://github.com/g-cqd/DynamicIcon", | |
| "intrinsic_added_value": "Abstracts complex Apple icon-switching APIs into a clean, modern Swift interface." | |
| }, | |
| { | |
| "title": "AemiUI", | |
| "intent": "Shared UI component library for Aemi projects", | |
| "goal": "Provide a standard set of tested UI components and layouts for the Aemi Studio ecosystem.", | |
| "url": "https://github.com/Aemi-Studio/AemiUI", | |
| "intrinsic_added_value": "Promotes component reuse and visual consistency across Aemi-branded applications." | |
| }, | |
| { | |
| "title": "AemiUtilities", | |
| "intent": "General-purpose Swift utility collection", | |
| "goal": "Provide common extensions and helper functions to reduce boilerplate in Swift projects.", | |
| "url": "https://github.com/Aemi-Studio/AemiUtilities", | |
| "intrinsic_added_value": "Offers battle-tested utility functions and Foundation extensions shared across multiple codebases." | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment