{"id":22760468,"url":"https://github.com/funatsufumiya/ofxsharedmemory","last_synced_at":"2025-09-04T02:39:50.038Z","repository":{"id":265802371,"uuid":"862756738","full_name":"funatsufumiya/ofxSharedMemory","owner":"funatsufumiya","description":"Shared Memory addon for OpenFrameworks 0.11/0.12 (using kyr0/libsharedmemory)","archived":false,"fork":false,"pushed_at":"2024-09-26T12:51:19.000Z","size":25,"stargazers_count":5,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-28T16:15:01.726Z","etag":null,"topics":["openframeworks-addon"],"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/funatsufumiya.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":"2024-09-25T06:25:34.000Z","updated_at":"2025-05-07T11:17:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"09fedffb-a436-4a8a-847a-6a87103071cd","html_url":"https://github.com/funatsufumiya/ofxSharedMemory","commit_stats":null,"previous_names":["funatsufumiya/ofxsharedmemory"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/funatsufumiya/ofxSharedMemory","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funatsufumiya%2FofxSharedMemory","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funatsufumiya%2FofxSharedMemory/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funatsufumiya%2FofxSharedMemory/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funatsufumiya%2FofxSharedMemory/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/funatsufumiya","download_url":"https://codeload.github.com/funatsufumiya/ofxSharedMemory/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funatsufumiya%2FofxSharedMemory/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273543111,"owners_count":25124266,"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-09-04T02:00:08.968Z","response_time":61,"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":["openframeworks-addon"],"created_at":"2024-12-11T09:07:12.912Z","updated_at":"2025-09-04T02:39:50.022Z","avatar_url":"https://github.com/funatsufumiya.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ofxSharedMemory\n\nShared Memory addon for OpenFrameworks 0.11/0.12, using [kyr0/libsharedmemory](https://github.com/kyr0/libsharedmemory).\n\n## Usage\n\n- ofApp.h\n    \n    ```cpp\n    std::shared_ptr\u003clsm::SharedMemoryReadStream\u003e reader;\n\tstd::shared_ptr\u003clsm::SharedMemoryWriteStream\u003e writer;\n    ```\n\n- ofApp.cpp\n\n    ```cpp\n    std::string dataToTransfer = \"Hello World!\";\n        \n    writer = std::make_shared\u003cSharedMemoryWriteStream\u003e(\"strPipe\", 65535, false); // name, size, isPersistent\n    writer-\u003ewrite(dataToTransfer);\n    ofLogNotice() \u003c\u003c \"Data wrote: \" \u003c\u003c dataToTransfer;\n\n    reader = std::make_shared\u003cSharedMemoryReadStream\u003e(\"strPipe\", 65535, false);\n    std::string data = reader-\u003ereadString();\n    ofLogNotice() \u003c\u003c \"Data read: \" \u003c\u003c data;\n    ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunatsufumiya%2Fofxsharedmemory","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffunatsufumiya%2Fofxsharedmemory","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunatsufumiya%2Fofxsharedmemory/lists"}