{"id":13405979,"url":"https://github.com/iohzrd/identia","last_synced_at":"2025-03-14T10:32:12.179Z","repository":{"id":37388801,"uuid":"395224917","full_name":"iohzrd/identia","owner":"iohzrd","description":"Decentralized, censorship resistant social media on IPFS.","archived":false,"fork":false,"pushed_at":"2025-01-20T00:08:17.000Z","size":4918,"stargazers_count":81,"open_issues_count":4,"forks_count":11,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-10T14:59:52.201Z","etag":null,"topics":["cryptography","decentralized","distributed","identity","ipfs","media","p2p","publishing","social","social-media","social-network","svelte","sveltejs"],"latest_commit_sha":null,"homepage":"","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iohzrd.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}},"created_at":"2021-08-12T06:56:00.000Z","updated_at":"2025-02-27T05:59:37.000Z","dependencies_parsed_at":"2023-02-18T12:16:30.615Z","dependency_job_id":"8ebb5641-ffdb-44bf-9ffe-e82c71229646","html_url":"https://github.com/iohzrd/identia","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iohzrd%2Fidentia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iohzrd%2Fidentia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iohzrd%2Fidentia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iohzrd%2Fidentia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iohzrd","download_url":"https://codeload.github.com/iohzrd/identia/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243562157,"owners_count":20311231,"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","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":["cryptography","decentralized","distributed","identity","ipfs","media","p2p","publishing","social","social-media","social-network","svelte","sveltejs"],"created_at":"2024-07-30T19:02:17.625Z","updated_at":"2025-03-14T10:32:11.830Z","avatar_url":"https://github.com/iohzrd.png","language":"Svelte","funding_links":["https://github.com/sponsors/iohzrd","https://www.patreon.com/iohzrd"],"categories":["Svelte","Apps","Applications"],"sub_categories":["Open Source","Social media"],"readme":"# identia\n\nPeer-to-peer, censorship resistant social media on IPFS. Plus experimental RSS reader.\n\nSuccessor to [follow](https://github.com/iohzrd/follow)\n\n![screenshot1](screenshot-1.png)\n\n## Development / Running from source\n\nFollow [this guide](https://tauri.studio/v1/guides/getting-started/prerequisites) to setup dev dependencies...\n\n### Linux\n\nFor video playback on linux, you may need to manually install gstreamer/gst-plugins:\n`gstreamer gst-libva gst-plugins-bad gst-plugins-base gst-plugins-good gst-plugins-ugly`\n\nFor hardware video acceleration install: `gstreamer-vaapi`. Optional but recommended.\n\n```\nnpm install\nnpm start\n```\n\n## Architecture\n\n### The identity object:\n\n```\n{\n    \"avatar\": \"\", // base64 encoded image or ipfs CID for \"avatar\"\n    \"description\": \"\", // user-defined description / bio\n    \"display_name\": \"\", // user-defined display name\n    \"following\": [\"\"], // a list of ID's the user follows\n    \"meta\": {}, // graph time!\n    \"posts\": [\"\"], // a list of CIDs that represent post objects\n    \"publisher\": \"\", // users IPNS ID\n    \"timestamp\": 1608271880058, // UTC adjusted UNIX timestamp of the identities last alteration\n}\n```\n\n### The post object:\n\n```\n{\n    \"body\": \"\", // the text body of the post\n    \"files\": [], // a list of file paths, relative to the post root\n    \"meta\": {}, // graph time!\n    \"publisher\": \"\", // original publisher, will be used for \"re-post\" functionality\n    \"timestamp\": 1608271880058 // UTC adjusted UNIX timestamp of the post\n}\n```\n\n### The meta object:\n\n```\n{\"TODO\": \"so many things to do...\"}\n```\n\nThe meta object is a store for arbitrary data that can be used to describe complex relationships between various types of data.\nThese relationships can be stored in a post object to add context to a specific post or in the identity object to provide an identity-wide context scope.\n\n## TODO\n\n- [x] prototype logic\n- [x] periodically re-publish self identity\n- [x] periodically update identities you follow...\n- [x] cache posts\n- [x] enable file in posts\n- [x] bundle IPFS binaries and manage execution\n- [x] post view\n- [x] implement tray.\n- [x] progress events for spinners and such\n- [x] Distribute binaries\n- [x] migrate to SQLite...\n- [x] Paginate feed\n- [x] enable(fix) audio/video playback\n- [ ] re-implement comment system via pubsub\n- [ ] implement image(media) board system via pubsub\n- [ ] implement custom IPFS in rust-libp2p\n- [ ] mobile...\n- [ ] \"re-post\" / mirror a post\n- [ ] include crypto signature of body in post\n- [ ] mechanism for exporting / importing, identity / posts\n- [ ] strip exif data from images\n- [ ] include index.html with posts to allow styling for browser consumption...\n- [ ] Auto-update system\n- [ ] advanced pin management\n- [ ] meta view\n- [ ] settings view\n- [ ] keybase-like functionality...\n\n## Follow me\n\n```\n12D3KooWHxU85q4JWsDXq4ZHjBCdjHHGL9wnMtqBMMgArkn6xcyz\n```\n\n## Support me\n\nhttps://github.com/sponsors/iohzrd\n\nhttps://www.patreon.com/iohzrd\n\n```\nBTC:\nbc1qtss3kxqcfl7glaskys7tevs98e6v62rhpx8lzj\n```\n\n## License\n\n[AGPL-3.0](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiohzrd%2Fidentia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiohzrd%2Fidentia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiohzrd%2Fidentia/lists"}