{"id":22540871,"url":"https://github.com/dalm1/calypso","last_synced_at":"2026-04-28T01:32:51.026Z","repository":{"id":243712245,"uuid":"813220024","full_name":"DALM1/Calypso","owner":"DALM1","description":"Calypso is a communication program built in Ruby using TCP for communication and following the MVC (Model-View-Controller) design pattern. This pogram allows users to create or join chat rooms, with the option to set a password for security.","archived":false,"fork":false,"pushed_at":"2024-11-16T07:04:46.000Z","size":174,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-14T04:06:24.044Z","etag":null,"topics":["chat","database-free","mvc","ruby","tcp-client","tcp-client-server","tcp-ip","tcp-server","tcp-socket","terminal"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DALM1.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}},"created_at":"2024-06-10T17:45:21.000Z","updated_at":"2024-11-16T07:04:50.000Z","dependencies_parsed_at":"2025-06-14T04:06:33.098Z","dependency_job_id":"293e8836-6328-4e87-9689-b88a21bf2572","html_url":"https://github.com/DALM1/Calypso","commit_stats":null,"previous_names":["dalm1/calypso","the-odyssey-team-tot/calypso"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/DALM1/Calypso","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DALM1%2FCalypso","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DALM1%2FCalypso/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DALM1%2FCalypso/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DALM1%2FCalypso/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DALM1","download_url":"https://codeload.github.com/DALM1/Calypso/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DALM1%2FCalypso/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32362781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["chat","database-free","mvc","ruby","tcp-client","tcp-client-server","tcp-ip","tcp-server","tcp-socket","terminal"],"created_at":"2024-12-07T12:13:00.268Z","updated_at":"2026-04-28T01:32:51.011Z","avatar_url":"https://github.com/DALM1.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n Calypso\n\u003c/h1\u003e\n\n![Logo de Calypso](assets/calypso-logo.png)\n\n# Resume\nCalypso is a communication program built in Ruby using TCP for communication and following the MVC (Model-View-Controller) design pattern. This pogram allows users to create or join chat rooms, with the option to set a password for security.\n\n# Utilisation\n```sh\ngit clone https://github.com/DALM1/Calypso.git\n```\n\n```sh\ncd Calypso\n```\n\n```sh\ngem install bundle\n```\n\n```sh\nbundle install\n```\n\n```sh\nruby cal.rb\n```\n\n\n# 0.1 Beta Patch Note\n\n1. User and Room Management Commands:\n\u003cp\u003e\n\t•\t/quit : Exit the current room and return to the main menu.\n\u003c/p\u003e\n\u003cp\u003e\n\t•\t/list : Lists the users present in the room.\n\u003c/p\u003e\n\u003cp\u003e\n\t•\t/info : Provides information about the room (name, creator, users).\n\u003c/p\u003e\n\u003cp\u003e\n\t•\t/hodor 'newpass' : Changes the room’s password (only the creator can do this).\n\u003c/p\u003e\n\u003cp\u003e\n\t•\t/ban 'username' : Bans a user from the room (only the creator can do this).\n\u003c/p\u003e\n\u003cp\u003e\n\t•\t/powerto 'username' : Transfers the ownership of the room to another user.\n\u003c/p\u003e\n\u003cp\u003e\n\t•\t/erased 'roomname' : Deletes the room (only the creator can do this).\n\u003c/p\u003e\n\u003cp\u003e\n\t•\t/axios 'CurrentRoom' 'NewRoomName' : Redirects all users from one room to another and closes the current room.\n\u003c/p\u003e\n\n2. Permission Management:\n\n\t•\tSensitive commands verify that only the creator of the room can execute them.\n\n3. Proper Connection Management:\n\n\t•\tClient connections are properly closed after the user leaves the room.\n# Calypso2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdalm1%2Fcalypso","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdalm1%2Fcalypso","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdalm1%2Fcalypso/lists"}