{"id":15047197,"url":"https://github.com/xdec0de/42cpp","last_synced_at":"2026-02-24T00:03:03.412Z","repository":{"id":207548737,"uuid":"719513527","full_name":"xDec0de/42CPP","owner":"xDec0de","description":"A collection of all C++ projects from 42, consisting of 10 different modules.","archived":false,"fork":false,"pushed_at":"2025-08-15T16:10:30.000Z","size":136,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-18T20:50:38.152Z","etag":null,"topics":["42","42born2code","42cursus","42madrid","42projects","42school","cpp","cpp98"],"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/xDec0de.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}},"created_at":"2023-11-16T10:29:27.000Z","updated_at":"2025-08-15T16:10:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"bd168e2e-f97a-4209-9b4f-409e7627f7ce","html_url":"https://github.com/xDec0de/42CPP","commit_stats":null,"previous_names":["xdec0de/42cpp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/xDec0de/42CPP","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xDec0de%2F42CPP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xDec0de%2F42CPP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xDec0de%2F42CPP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xDec0de%2F42CPP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xDec0de","download_url":"https://codeload.github.com/xDec0de/42CPP/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xDec0de%2F42CPP/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281403636,"owners_count":26495086,"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-10-28T02:00:06.022Z","response_time":60,"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":["42","42born2code","42cursus","42madrid","42projects","42school","cpp","cpp98"],"created_at":"2024-09-24T20:55:10.750Z","updated_at":"2025-10-28T08:10:19.962Z","avatar_url":"https://github.com/xDec0de.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 42CPP\nA collection of all C++ projects from 42, consisting of 10 different modules.\n\u003cdiv align=center\u003e\n\u003ca href=\"https://www.codefactor.io/repository/github/xdec0de/42cpp\"\u003e\u003cimg src=\"https://www.codefactor.io/repository/github/xdec0de/42cpp/badge\" alt=\"CodeFactor\"\u003c/img\u003e\u003c/a\u003e\n\u003ca href=\"https://app.codacy.com/gh/xDec0de/42CPP/dashboard?utm_source=gh\u0026utm_medium=referral\u0026utm_content=\u0026utm_campaign=Badge_grade\"\u003e \u003cimg src=\"https://app.codacy.com/project/badge/Grade/8186c6267ffd4d92a41ada31319b288d\" alt=\"Codacy\"\u003c/img\u003e\u003c/a\u003e\n\u003c/div\u003e\n\n## General instructions\n\nInstructions apply for all projects and exercises unless stated otherwis\non a specific exercise.\n- Makefiles must not [relink](https://stackoverflow.com/questions/52502399/what-does-it-mean-for-a-makefile-to-relink).\n- Code must be compiled with `c++` and the flags\n`-Wall -Werror -Wextra -std=c++98 -pedantic`.\n- Class names must be in [UpperCamelCase](https://wiki.c2.com/?UpperCamelCase)\nformat, that is \"ClassName.cpp/.hpp/.tpp\".\n- Output messages must be ended by a new-line character and displayed\nto the standard output.\n- Almost everything on the standard library is allowed, however [boost libraries](https://www.geeksforgeeks.org/advanced-c-boost-library/),\n*printf(), *alloc() and free() are forbidden.\n- The `using namespace \u003cns_name\u003e` and `friend` keywords are forbidden.\n- Anything that requires to include the `\u003calgorithm\u003e` header is also forbidden,\nexcept on Module 08 and 09.\n- Memory leaks must be avoided.\n- From Module 02 to 09, classes must be designed in the [Orthodox Canonical Form](https://www.francescmm.com/orthodox-canonical-class-form/),\nexcept when explicitely stated otherwise.\n- Any function implementation put in a header file\n(except for function templates) are forbidden.\n- [Double inclusion](https://stackoverflow.com/questions/5000749/avoiding-double-inclusion-preprocessor-directive-vs-makefiles)\nmust be avoided by using include guards.\n\n## Code style\n\nBoth CodeFactor and Codacy are used to measure the code quality of this\nproject, one important performance issue that I had was using\n[regular parameters instead of const references](https://stackoverflow.com/questions/2627166/what-is-the-difference-between-a-const-reference-and-normal-parameter),\nthat is why most of the string parameters of this project are passed as\n`const std::string \u0026str` instead of just `std::string str`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxdec0de%2F42cpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxdec0de%2F42cpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxdec0de%2F42cpp/lists"}