{"id":35107554,"url":"https://github.com/benpm/.dev","last_synced_at":"2026-05-21T11:01:38.218Z","repository":{"id":326848288,"uuid":"1106962346","full_name":"benpm/.dev","owner":"benpm","description":"configuration? never heard of it","archived":false,"fork":false,"pushed_at":"2025-12-05T09:37:13.000Z","size":10924,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-29T13:41:18.783Z","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":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/benpm.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-11-30T10:06:13.000Z","updated_at":"2025-12-05T09:37:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/benpm/.dev","commit_stats":null,"previous_names":["benpm/.dev"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/benpm/.dev","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benpm%2F.dev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benpm%2F.dev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benpm%2F.dev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benpm%2F.dev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benpm","download_url":"https://codeload.github.com/benpm/.dev/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benpm%2F.dev/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33298252,"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-27T18:27:40.135Z","updated_at":"2026-05-21T11:01:38.212Z","avatar_url":"https://github.com/benpm.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# .dev\n\nSee live website https://benpm.github.io/.dev for all code and the result of their execution!\n\nA development container configured for C++ development with the latest LLVM toolchain.\n\n## Features\n\n- **Latest Ubuntu** base image\n- **Latest LLVM** toolchain including:\n  - `clang` / `clang++` - C/C++ compiler\n  - `clangd` - Language server for IDE features\n  - `clang-format` - Code formatter\n  - `clang-tidy` - Static analysis / linter\n  - `lldb` - Debugger\n  - `lld` - Linker\n- **VS Code Extensions**:\n  - [vscode-clangd](https://marketplace.visualstudio.com/items?itemName=llvm-vs-code-extensions.vscode-clangd) - C++ language support via clangd\n  - [CodeLLDB](https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb) - Native debugger based on LLDB\n  - CMake Tools - CMake build system support\n\n## Getting Started\n\n### Using with GitHub Codespaces\n\n1. Click the green \"Code\" button on this repository\n2. Select \"Open with Codespaces\"\n3. Click \"New codespace\"\n\n### Using with VS Code Dev Containers\n\n1. Install [Docker](https://www.docker.com/products/docker-desktop)\n2. Install [VS Code](https://code.visualstudio.com/) and the [Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)\n3. Clone this repository\n4. Open the repository in VS Code\n5. When prompted, click \"Reopen in Container\" (or use the command palette: \"Dev Containers: Reopen in Container\")\n\n## Quick Start\n\nOnce the devcontainer is running, try compiling and running the example:\n\n```bash\n# Compile with C++23 features\nclang++ -std=c++23 -o example example.cpp\n\n# Run the example\n./example\n```\n\n## Interactive C++ with clang-repl\n\nFor quick experimentation, use `clang-repl`:\n\n```bash\nclang-repl\n```\n\nThen type C++ code interactively:\n\n```cpp\nclang-repl\u003e #include \u003ciostream\u003e\nclang-repl\u003e std::cout \u003c\u003c \"Hello, World!\" \u003c\u003c std::endl;\nHello, World!\nclang-repl\u003e int x = 42;\nclang-repl\u003e x * 2\n(int) 84\n```\n\n## Building Projects\n\nFor larger projects, use CMake:\n\n```bash\nmkdir build \u0026\u0026 cd build\ncmake -G Ninja ..\nninja\n```\n\n## Code Formatting\n\nFormat your code using clang-format:\n\n```bash\nclang-format -i your_file.cpp\n```\n\n## Static Analysis\n\nRun clang-tidy for static analysis:\n\n```bash\nclang-tidy your_file.cpp -- -std=c++23\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenpm%2F.dev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenpm%2F.dev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenpm%2F.dev/lists"}