{"id":30815145,"url":"https://github.com/breadonlaptop/c_cpp_animations","last_synced_at":"2025-09-06T08:08:22.275Z","repository":{"id":312435488,"uuid":"932899658","full_name":"breadOnLaptop/C_CPP_Animations","owner":"breadOnLaptop","description":"C_CPP_Animations is a collection of command-line animations built using C and C++. It includes various visual effects such as loading animations, rotating symbols, and a spinning 3D cube. The project is designed for learning, experimentation, and potential future upgrades to more advanced graphical interfaces.","archived":false,"fork":false,"pushed_at":"2025-02-14T18:27:24.000Z","size":8860,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-30T16:31:41.861Z","etag":null,"topics":["animations","c","cpp14","implementation","programming"],"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/breadOnLaptop.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-14T18:18:31.000Z","updated_at":"2025-02-23T20:31:10.000Z","dependencies_parsed_at":"2025-08-30T16:41:51.328Z","dependency_job_id":null,"html_url":"https://github.com/breadOnLaptop/C_CPP_Animations","commit_stats":null,"previous_names":["breadonlaptop/c_cpp_animations"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/breadOnLaptop/C_CPP_Animations","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breadOnLaptop%2FC_CPP_Animations","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breadOnLaptop%2FC_CPP_Animations/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breadOnLaptop%2FC_CPP_Animations/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breadOnLaptop%2FC_CPP_Animations/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/breadOnLaptop","download_url":"https://codeload.github.com/breadOnLaptop/C_CPP_Animations/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breadOnLaptop%2FC_CPP_Animations/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273874160,"owners_count":25183368,"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","status":"online","status_checked_at":"2025-09-06T02:00:13.247Z","response_time":2576,"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":["animations","c","cpp14","implementation","programming"],"created_at":"2025-09-06T08:06:44.265Z","updated_at":"2025-09-06T08:08:22.262Z","avatar_url":"https://github.com/breadOnLaptop.png","language":"C","readme":"# C\\_CPP\\_Animations\n\n## Overview\n\nC\\_CPP\\_Animations is a collection of command-line animations and interactive projects written in C/C++. The repository includes animations such as:\n\n- **Loading with Percentage:** A progress bar that updates with percentage values.\n- **Rotating Loading Symbol:** An animation using a rotating symbol for a 360° effect.\n- **Spinning 3D Cube:** A text-based 3D cube with special characters on each side.\n\n## Folder Structure\n\nBelow is a simple view of how the project is organized:\n\n```\nC_CPP_Animations/\n├── README.md             # Project overview and instructions\n├── LICENSE               # MIT License\n├── docs/                 # Extra documentation (design notes, etc.)\n│   └── design.md\n├── src/                  # All source code\n│   ├── core/             # Shared code (common functions)\n│   │   ├── animation.h\n│   │   └── animation.c\n│   ├── loading_percentage/   # Loading with Percentage project\n│   │   ├── loading.c\n│   │   └── Makefile\n│   ├── rotating_symbol/      # Rotating Loading Symbol project\n│   │   ├── rotating.c\n│   │   └── Makefile\n│   ├── spinning_cube/        # Spinning 3D Cube project\n│   │   ├── cube.c\n│   │   └── Makefile\n│   ├── interactive_dashboard/ # Interactive Dashboard project\n│   │   ├── dashboard.c\n│   │   └── Makefile\n│   ├── animated_clock/       # Animated Clock project\n│   │   ├── clock.c\n│   │   └── Makefile\n│   ├── ascii_particle_system/ # ASCII Particle System project\n│   │   ├── particles.c\n│   │   └── Makefile\n```\n\n## Getting Started\n\n### Prerequisites\n\n- A C/C++ compiler (e.g., GCC or Clang)\n- A terminal that supports ANSI escape codes\n- (Optional for GUI upgrades) Libraries such as SDL2, SFML, or ncurses\n\n### Installation\n\n1. **Clone the Repository:**\n\n   ```bash\n   git clone https://github.com/Peeyush-04/C_CPP_Animations.git\n   cd C_CPP_Animations\n   ```\n\n2. **Compile a Project:**\n   For example, to compile the \"Loading with Percentage\" animation:\n\n   ```bash\n   cd src/loading_percentage\n   make\n   ```\n\n3. **Run the Animation:**\n\n   ```bash\n   ./bin/loading  # Adjust the executable name if needed\n   ```\n\n## provi\n\nContributions are welcome! To contribute:\n\n1. Fork the repository.\n2. Create a new branch:\n   ```bash\n   git checkout -b feature/YourFeature\n   ```\n3. Commit your changes with clear messages.\n4. Push the branch:\n   ```bash\n   git push origin feature/YourFeature\n   ```\n5. Open a pull request with a description of your changes.\n\n## License\n\nThis project is licensed under the MIT License – see the [LICENSE](LICENSE) file for details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbreadonlaptop%2Fc_cpp_animations","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbreadonlaptop%2Fc_cpp_animations","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbreadonlaptop%2Fc_cpp_animations/lists"}