{"id":35122200,"url":"https://github.com/hazeliscoding/pointer-notes","last_synced_at":"2026-05-21T09:07:06.912Z","repository":{"id":329654736,"uuid":"1096002940","full_name":"hazeliscoding/pointer-notes","owner":"hazeliscoding","description":"A cheatsheet to help anyone understand pointers in C++","archived":false,"fork":false,"pushed_at":"2025-11-13T20:07:20.000Z","size":3,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-11T12:59:45.760Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/hazeliscoding.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-13T20:06:35.000Z","updated_at":"2025-12-10T21:56:43.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hazeliscoding/pointer-notes","commit_stats":null,"previous_names":["hazeliscoding/pointer-notes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hazeliscoding/pointer-notes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazeliscoding%2Fpointer-notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazeliscoding%2Fpointer-notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazeliscoding%2Fpointer-notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazeliscoding%2Fpointer-notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hazeliscoding","download_url":"https://codeload.github.com/hazeliscoding/pointer-notes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazeliscoding%2Fpointer-notes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33295317,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T02:57:32.698Z","status":"ssl_error","status_checked_at":"2026-05-21T02:57:31.990Z","response_time":62,"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":[],"created_at":"2025-12-28T00:40:36.491Z","updated_at":"2026-05-21T09:07:06.907Z","avatar_url":"https://github.com/hazeliscoding.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pointer Cheat Sheet (C++)\n\nA small C++ program that demonstrates:\n\n* Passing by value\n* Passing by reference\n* Passing pointer addresses\n* Stack scoping behavior\n* Basic logging to console / debug window\n\nOriginally written to help beginners understand how data moves around in memory.\n\n---\n\n## 📦 Build \u0026 Run\n\n### **Windows**\n\nRequires **CMake** and **Visual Studio 2022** (or Build Tools).\n\n```powershell\nmkdir build\ncd build\ncmake ..\ncmake --build .\n./Debug/pointer_cheatsheet.exe\n```\n\nOr simply open the folder with Visual Studio and press **Ctrl + F5**.\n\n### **Linux / Mac**\n\nRequires **CMake** and a C++17 compiler (g++ or clang).\n\n```bash\nmkdir build\ncd build\ncmake ..\ncmake --build .\n./pointer_cheatsheet\n```\n\n---\n\n## 📁 Project Structure\n\n```\nsrc/\n  Log.h\n  Log.cpp\n  main.cpp\nCMakeLists.txt\n```\n\n---\n\n## ✨ Notes\n\n* On Windows, “debug window” logs use `OutputDebugString`.\n  Use Visual Studio or DebugView++ to see them.\n* Console logs print normally everywhere.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhazeliscoding%2Fpointer-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhazeliscoding%2Fpointer-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhazeliscoding%2Fpointer-notes/lists"}