{"id":22310964,"url":"https://github.com/velocitatem/cellviz","last_synced_at":"2025-07-29T08:32:00.978Z","repository":{"id":265459760,"uuid":"864085789","full_name":"velocitatem/CellViz","owner":"velocitatem","description":"Cellular Automata inspired by live-data visualization, designed to handle multidimensional and high-throughput data efficiently.","archived":false,"fork":false,"pushed_at":"2024-12-03T11:57:56.000Z","size":1327,"stargazers_count":1,"open_issues_count":1,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-20T03:11:17.830Z","etag":null,"topics":["cellular-automata","conways-game-of-life","data","economics"],"latest_commit_sha":null,"homepage":"https://velocitatem.github.io/CellViz/","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/velocitatem.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":"2024-09-27T13:16:38.000Z","updated_at":"2024-12-03T11:56:18.000Z","dependencies_parsed_at":"2024-11-30T02:48:06.721Z","dependency_job_id":null,"html_url":"https://github.com/velocitatem/CellViz","commit_stats":null,"previous_names":["velocitatem/cellviz"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/velocitatem/CellViz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/velocitatem%2FCellViz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/velocitatem%2FCellViz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/velocitatem%2FCellViz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/velocitatem%2FCellViz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/velocitatem","download_url":"https://codeload.github.com/velocitatem/CellViz/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/velocitatem%2FCellViz/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267653203,"owners_count":24122151,"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-07-29T02:00:12.549Z","response_time":2574,"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":["cellular-automata","conways-game-of-life","data","economics"],"created_at":"2024-12-03T21:16:50.160Z","updated_at":"2025-07-29T08:32:00.700Z","avatar_url":"https://github.com/velocitatem.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 style=\"text-align: center;\"\u003eCellViz\u003c/h1\u003e\n\n[![GitHub release](https://img.shields.io/github/v/release/velocitatem/CellViz)](https://github.com/velocitatem/CellViz/releases) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![Build Status](https://img.shields.io/github/actions/workflow/status/velocitatem/CellViz/ci.yml)](https://github.com/velocitatem/CellViz/actions) [![Language: C++](https://img.shields.io/badge/language-C%2B%2B-%23f34b7d)](https://en.wikipedia.org/wiki/C%2B%2B) [![Platform: Ubuntu](https://img.shields.io/badge/platform-Ubuntu-orange)](https://ubuntu.com/) [![Platform: WSL](https://img.shields.io/badge/platform-Windows-blue)](https://learn.microsoft.com/en-us/windows/wsl/install)\n\nCellular Automata inspired by live-data visualization, designed to handle multidimensional and high-throughput data efficiently.\n\n\u003cdiv style=\"text-align: center;\"\u003e\n  \u003cimg src=\"https://github.com/user-attachments/assets/5206dec2-d7c7-43cb-b913-4b2c32efb07d\" alt=\"Output Image\"\u003e\n\u003c/div\u003e\n\n\n\n## Authors\n![Contributors](https://contrib.rocks/image?repo=velocitatem/CellViz)\n\n## Requirements\n\nTo build and run CellViz, you will need:\n\n- Boost dev libraries (not runtime)\n- JsonCpp dev libraries\n- Nlohmann Json dev libraries\n- CMake\n- SFML\n- Alpha Vantage API Key\n\n### Installation on Ubuntu\n\n```bash\nsudo apt-get update \u0026\u0026 sudo apt-get install -y cmake g++ lcov libboost-all-dev libsfml-dev libgtest-dev nlohmann-json3-dev libcurl4-openssl-dev libgtk-3-dev libjsoncpp-dev\n```\n\nTo use the Alpha Vantage API key, set the environment variable:\n\n```bash\nexport API_KEY=YOUR_ALPHA_VANTAGE_KEY\n```\n\n## Project Structure\n\n```mermaid\nsequenceDiagram\n    participant User\n    participant Main\n    participant Board\n    participant SmithLife\n\n    User-\u003e\u003eMain: Start Application\n    Main-\u003e\u003eBoard: Create Board(Z, Z)\n    Main-\u003e\u003eCellularLife: Create life cells\n    Main-\u003e\u003eBoard: Add life cells\n    loop Update Board\n        Main-\u003e\u003eCellularLife: Call compute()\n        CellularLife-\u003e\u003eBoard: Update grid\n        Board-\u003e\u003eMain: Render board\n    end\n```\n\n## Features\n\n- Visualizes cellular automata for high-throughput, multidimensional data.\n- Implements live-data feeds with Alpha Vantage integration.\n- Built with C++ and optimized for performance.\n- Modular architecture for easy addition of new data types.\n\n## Getting Started\n\nClone the repository:\n\n```bash\ngit clone https://github.com/velocitatem/CellViz.git\n```\n\nNavigate to the project directory:\n\n```bash\ncd CellViz\n```\n\nBuild the project using CMake:\n\n```bash\nmkdir build \u0026\u0026 cd build\ncmake ..\nmake\n```\n\nRun the application:\n\n```bash\n./CellViz\n```\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvelocitatem%2Fcellviz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvelocitatem%2Fcellviz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvelocitatem%2Fcellviz/lists"}