{"id":29514756,"url":"https://github.com/mrshaw01/software-engineer","last_synced_at":"2025-07-16T14:04:11.420Z","repository":{"id":293723526,"uuid":"984940667","full_name":"mrshaw01/software-engineer","owner":"mrshaw01","description":"A curated learning repository focused on High-Performance Computing (HPC) — covering fundamentals to advanced topics in CUDA, MPI, C++, and Python-C++ interoperability.","archived":false,"fork":false,"pushed_at":"2025-07-08T04:49:48.000Z","size":6887,"stargazers_count":332,"open_issues_count":14,"forks_count":58,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-07-08T06:32:01.950Z","etag":null,"topics":["cpp","cuda","high-performance-computing","hip","python"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrshaw01.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":"CITATION.cff","codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-16T19:17:48.000Z","updated_at":"2025-07-08T04:49:52.000Z","dependencies_parsed_at":"2025-06-01T07:19:44.742Z","dependency_job_id":"d9e50696-d901-45a1-87f8-1dc2910bf1c6","html_url":"https://github.com/mrshaw01/software-engineer","commit_stats":null,"previous_names":["mrshaw01/software-engineer-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mrshaw01/software-engineer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrshaw01%2Fsoftware-engineer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrshaw01%2Fsoftware-engineer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrshaw01%2Fsoftware-engineer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrshaw01%2Fsoftware-engineer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrshaw01","download_url":"https://codeload.github.com/mrshaw01/software-engineer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrshaw01%2Fsoftware-engineer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265516698,"owners_count":23780695,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","cuda","high-performance-computing","hip","python"],"created_at":"2025-07-16T14:01:26.659Z","updated_at":"2025-07-16T14:04:07.024Z","avatar_url":"https://github.com/mrshaw01.png","language":"C++","readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003eSoftware Engineer\u003c/h1\u003e\n  \u003cp\u003e\n    \u003cimg src=\"https://img.shields.io/github/actions/workflow/status/mrshaw01/software-engineer/pre-commit.yml?branch=main\u0026label=pre-commit\u0026logo=pre-commit\u0026logoColor=white\" alt=\"pre-commit status\"\u003e\n  \u003c/p\u003e\n\n  \u003cp\u003e\n    \u003cimg src=\"https://img.shields.io/github/last-commit/mrshaw01/software-engineer\" alt=\"Last Commit\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/issues/mrshaw01/software-engineer\" alt=\"Issues\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/issues-pr/mrshaw01/software-engineer\" alt=\"Pull Requests\"\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\nA curated, high-quality collection of learning resources focused on **Python** and soon **C/C++**, designed to build strong software engineering foundations and system-level understanding.\n\n## Repository Structure\n\n```text\n.\n├── python-basic/           # Essential Python syntax, data types, and operations\n├── python-advanced/        # Decorators, threading, logging, JSON, and more\n├── python-OOP/             # Deep dive into Python's object-oriented programming\n├── cpp-basic/              # Fundamentals of C++: syntax, memory, pointers, etc.\n├── cpp-advanced/           # Advanced C++: RAII, noexcept, smart pointers, RVO, etc.\n├── cpp-OOP/                # Object-oriented programming in C++\n├── CUDA/                   # GPU programming with CUDA (host \u0026 device code)\n├── MPI/                    # Message Passing Interface programming and demos\n├── docs/                   # System-level notes on performance, Python-C++ interop, mixed precision, etc.\n└── README.md               # Project overview (this file)\n```\n\n## How to Use\n\nEach numbered folder contains a `README.md` explaining the concepts, along with runnable `.py` files. For example:\n\n```bash\ncd python-advanced/08-decorators\npython basic_function_decorator.py\n```\n\nSome scripts require third-party libraries (e.g., `numpy`, `scipy`, `torch`).\n\nAll code is compatible with **Python 3.7+** and written to be **minimal, focused, and testable**.\n\n## Highlights\n\n### Python\n\n- **OOP Mastery**: Classes, inheritance, metaclasses, descriptors (`python-OOP/`)\n- **Advanced Topics**: Decorators, context managers, function caching, concurrency\n- **Data Structures**: Lists, tuples, dicts, sets with practical usage\n\n### C++\n\n- **C++ Basics**: Syntax, functions, pointers, structs, scope, enums (`cpp-basic/`)\n- **Modern C++**: RAII, smart pointers, move semantics, alignment, RVO (`cpp-advanced/`)\n- **C++ OOP**: Classes, access specifiers, inheritance, polymorphism, templates\n\n### Systems \u0026 Performance\n\n- **CUDA Programming**: Host/device model, kernel launch, memory management (`CUDA/`)\n- **MPI Programming**: Practical distributed programs, matrix ops, and validation runs (`MPI/`)\n- **Docs**: Python-C++ interfacing, GIL handling, CUDA tuning, mixed precision training (`docs/`)\n\n## Learning Philosophy\n\n- Small, modular examples — no cluttered notebooks\n- Clear separation between concept, code, and commentary\n- Emphasis on design, performance, and maintainability\n- Builds knowledge progressively — ideal for serious learners and professionals\n\n## Star History\n\n\u003ca href=\"https://www.star-history.com/#mrshaw01/software-engineer\u0026Date\"\u003e\n \u003cpicture\u003e\n   \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://api.star-history.com/svg?repos=mrshaw01/software-engineer\u0026type=Date\u0026theme=dark\" /\u003e\n   \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"https://api.star-history.com/svg?repos=mrshaw01/software-engineer\u0026type=Date\" /\u003e\n   \u003cimg alt=\"Star History Chart\" src=\"https://api.star-history.com/svg?repos=mrshaw01/software-engineer\u0026type=Date\" /\u003e\n \u003c/picture\u003e\n\u003c/a\u003e\n\n## 🤝 Contributions\n\nFound a bug, typo, or want to extend something? Open a PR — all contributions are welcome.\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/mrshaw01/software-engineer/graphs/contributors\"\u003e\n    \u003cimg src=\"https://contrib.rocks/image?repo=mrshaw01/software-engineer\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## 📄 License\n\nMIT License — free to use, adapt, and share for learning and teaching.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrshaw01%2Fsoftware-engineer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrshaw01%2Fsoftware-engineer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrshaw01%2Fsoftware-engineer/lists"}