{"id":23038831,"url":"https://github.com/kauefraga/learning-cpp","last_synced_at":"2026-07-02T16:32:21.572Z","repository":{"id":177710066,"uuid":"658061730","full_name":"kauefraga/learning-cpp","owner":"kauefraga","description":"🔥 Learning a general-purpose language (c++).","archived":false,"fork":false,"pushed_at":"2023-07-01T00:00:50.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-14T01:02:39.335Z","etag":null,"topics":["cplusplus","cpp","learn","learning"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kauefraga.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-24T16:39:05.000Z","updated_at":"2023-06-26T23:19:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"b7e07fef-6481-4816-aadb-7beed4da3ff1","html_url":"https://github.com/kauefraga/learning-cpp","commit_stats":null,"previous_names":["kauefraga/learning-cpp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kauefraga/learning-cpp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kauefraga%2Flearning-cpp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kauefraga%2Flearning-cpp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kauefraga%2Flearning-cpp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kauefraga%2Flearning-cpp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kauefraga","download_url":"https://codeload.github.com/kauefraga/learning-cpp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kauefraga%2Flearning-cpp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35055119,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-02T02:00:06.368Z","response_time":173,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["cplusplus","cpp","learn","learning"],"created_at":"2024-12-15T18:25:36.753Z","updated_at":"2026-07-02T16:32:21.535Z","avatar_url":"https://github.com/kauefraga.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003e\u003ccode\u003eLearning C++\u003c/code\u003e\u003c/h1\u003e\n\n  \u003cp\u003e\n    \u003cstrong\u003e🔥 Learning c++, a general-purpose language 🔥\u003c/strong\u003e\n  \u003c/p\u003e\n\n  \u003cp\u003e\n    \u003cimg\n      alt=\"GitHub top language\"\n      src=\"https://img.shields.io/github/languages/top/kauefraga/learning-cpp.svg\"\n    /\u003e\n    \u003cimg\n      alt=\"Repository size\"\n      src=\"https://img.shields.io/github/repo-size/kauefraga/learning-cpp.svg\"\n    /\u003e\n    \u003ca href=\"https://github.com/kauefraga/learning-cpp/commits/main\"\u003e\n      \u003cimg\n        alt=\"GitHub last commit\"\n        src=\"https://img.shields.io/github/last-commit/kauefraga/learning-cpp.svg\"\n      /\u003e\n    \u003c/a\u003e\n    \u003cimg\n      alt=\"GitHub LICENSE\"\n      src=\"https://img.shields.io/github/license/kauefraga/learning-cpp.svg\"\n    /\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\n\u003e Here are the contents i have learned about the c++ programming language.\n\n## ⬇️ Getting started\n\n1. Clone the repository\n2. Compile the source files\n3. Run it\n\n```bash\ngit clone https://github.com/kauefraga/learning-cpp.git\ncd learning-cpp\n\n# You will need to compile everything\n```\n\n## 📚 Learned\n\nI learned from those resources: [C++ full course by Bro Code](https://youtu.be/-TkoO8Z07hI) and [Learn C++](https://www.learncpp.com).\n\n- [Primitive types](https://www.learncpp.com/cpp-tutorial/introduction-to-fundamental-data-types)\n- [Variables](https://www.learncpp.com/cpp-tutorial/variable-assignment-and-initialization)\n- [Constants](https://www.learncpp.com/cpp-tutorial/const-variables-and-symbolic-constants)\n- [Typedef](https://www.learncpp.com/cpp-tutorial/typedefs-and-type-aliases)\n- [Type casting](https://www.learncpp.com/cpp-tutorial/introduction-to-type-conversion-and-static_cast)\n- [Namespaces](https://www.learncpp.com/cpp-tutorial/naming-collisions-and-an-introduction-to-namespaces)\n- [Operators](https://www.learncpp.com/cpp-tutorial/introduction-to-literals-and-operators)\n- [If statements](https://www.learncpp.com/cpp-tutorial/introduction-to-if-statements)\n  - [Ternary operator](https://www.programiz.com/cpp-programming/ternary-operator)\n- [String](https://www.learncpp.com/cpp-tutorial/introduction-to-stdstring)\n\nSee the source code at [`src`](src/).\n\n## 🛠 Technologies\n\n- [C++ environment for Windows](https://www.mingw-w64.org) - Created to support the GCC compiler on Windows systems.\n- [C++](https://en.wikipedia.org/wiki/C%2B%2B) - A multi-paradigm and general-purpose programming language that performs well.\n\n## 📝 License\n\nThis project is licensed under the MIT License - See the [LICENSE](https://github.com/kauefraga/learning-cpp/blob/main/LICENSE) for more information.\n\n---\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg alt=\"Built with love\" src=\"https://forthebadge.com/images/badges/built-with-love.svg\"\u003e\n  \u003cimg alt=\"Powered by coffee\" src=\"https://forthebadge.com/images/badges/powered-by-coffee.svg\"\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkauefraga%2Flearning-cpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkauefraga%2Flearning-cpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkauefraga%2Flearning-cpp/lists"}