{"id":18522678,"url":"https://github.com/s0mewha7/bmstu-cpp-works","last_synced_at":"2026-04-25T12:34:51.500Z","repository":{"id":230615513,"uuid":"712887723","full_name":"s0mewha7/bmstu-cpp-works","owner":"s0mewha7","description":"a repository storing implementations of various built-in functions сpp language","archived":false,"fork":false,"pushed_at":"2024-06-13T16:15:11.000Z","size":2253,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-14T18:53:54.695Z","etag":null,"topics":["1semestr","cmake","cpp23","git","gitignore","google-mock","google-test","homework-project","homeworks","list","makefile","optional","readme-md","string","tree-structure","vector","workflow"],"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/s0mewha7.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-11-01T12:11:16.000Z","updated_at":"2024-06-13T16:18:46.000Z","dependencies_parsed_at":"2024-03-30T21:28:33.128Z","dependency_job_id":"59e8cff3-711a-4c65-9e78-c06b4424ea71","html_url":"https://github.com/s0mewha7/bmstu-cpp-works","commit_stats":null,"previous_names":["s0mewha7/bmstu-cpp-works"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/s0mewha7/bmstu-cpp-works","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0mewha7%2Fbmstu-cpp-works","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0mewha7%2Fbmstu-cpp-works/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0mewha7%2Fbmstu-cpp-works/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0mewha7%2Fbmstu-cpp-works/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/s0mewha7","download_url":"https://codeload.github.com/s0mewha7/bmstu-cpp-works/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0mewha7%2Fbmstu-cpp-works/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32262801,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T09:15:33.318Z","status":"ssl_error","status_checked_at":"2026-04-25T09:15:31.997Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["1semestr","cmake","cpp23","git","gitignore","google-mock","google-test","homework-project","homeworks","list","makefile","optional","readme-md","string","tree-structure","vector","workflow"],"created_at":"2024-11-06T17:32:41.145Z","updated_at":"2026-04-25T12:34:51.461Z","avatar_url":"https://github.com/s0mewha7.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BMSTU homeworks\n\n\n| **CI Service** | Build Status                                                                                                                                                                                                     |                                                                                                                                                                                                          Codestyle Check |\n|:---------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|\n| GitHub Actions | [![Build Status (GitHub Actions)](https://github.com/s0mewha7/bmstu-cpp-works/actions/workflows/ci-cmake-tests.yml/badge.svg)](https://github.com/s0mewha7/bmstu-cpp-works/actions/workflows/ci-cmake-tests.yml) | [![Build Status (GitHub Actions)](https://github.com/s0mewha7/bmstu-cpp-works/actions/workflows/ci-cpp-style-check.yml/badge.svg)](https://github.com/s0mewha7/bmstu-cpp-works/actions/workflows/ci-cpp-style-check.yml) |\n\n## Description\nThis repository contains homework assignments completed in the C++ programming language \nusing Google Test for testing. Each homework assignment is presented in a separate directory containing files with source code and tests.\n\n## Directory Structure\nThis repository has the following structure for example:\n```bash\nbmstu-cpp-works/\n├── dummy_vector/\n│   ├── array_bundle.h       # Header file for simulating arrays\n│   ├── vector_template.h    # Header file for simulating vectors\n│   ├── vector_test.cpp      # File with tests for simulating vectors\n│   └── CMakeLists.txt       # CMake file for building the project in the dummy_vector directory\n├── dummy_string/\n│   ├── string_bundle.h      # Header file for simulating strings\n│   ├── string_template.h    # Header file for working with string templates\n│   ├── string_test.cpp      # File with tests for simulating strings\n│   └── CMakeLists.txt       # CMake file for building the project in the dummy_string directory\n├── dummy_list/\n│   ├── basic_list.h         # Header file for simulating linked lists\n│   ├── list_testing.cpp     # File with tests for simulating linked lists\n│   └── CMakeLists.txt       # CMake file for building the project in the dummy_list directory\n├── ...                      # Other directories with homeworks\n├── README.md                # Documentation and instructions for usage\n└── CMakeLists.txt           # Main CMake file for setting up the project and building\n...\n```\n## Build Project\n- **Building the Project:** Use CMake to build the project. Ensure that CMake is installed on your system. If not, download and install it from https://cmake.org/download/ or if you use Linux, download package using terminal (Example for Fedora:``` \nsudo dnf install cmake```).\n- **Installing Google Test Framework:** Install using ```git clone https://github.com/google/googletest.git``` and etc.\n- **Testing the Code:** Run the tests to ensure the correctness of the implemented code. Use the following commands:\n    ```bash\n    mkdir build \u0026\u0026 cd build\n    cmake ..\n    cmake --build .\n    ctest or ./name_of_project\n    ```\n## License\nThis project is licensed under the [MIT License](https://github.com/git/git-scm.com/blob/main/MIT-LICENSE.txt)\n. \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs0mewha7%2Fbmstu-cpp-works","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fs0mewha7%2Fbmstu-cpp-works","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs0mewha7%2Fbmstu-cpp-works/lists"}