{"id":19041438,"url":"https://github.com/without-eyes/consolechat","last_synced_at":"2026-07-08T08:31:25.128Z","repository":{"id":259048621,"uuid":"876192111","full_name":"without-eyes/ConsoleChat","owner":"without-eyes","description":"Client-server console chat room application","archived":false,"fork":false,"pushed_at":"2024-11-27T10:16:33.000Z","size":271,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-26T21:01:55.754Z","etag":null,"topics":["c11","chat-application","chat-client","chat-server","console-application","console-chat","console-chat-app","hamachi","linux","network-chat","networking","unix","windows","winsock","winsock2"],"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/without-eyes.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":"2024-10-21T14:50:36.000Z","updated_at":"2024-11-27T11:38:23.000Z","dependencies_parsed_at":"2025-10-26T21:01:49.616Z","dependency_job_id":"4a0400e8-016e-41dd-acbf-0d09b3f6d138","html_url":"https://github.com/without-eyes/ConsoleChat","commit_stats":null,"previous_names":["without-eyes/consolechat"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/without-eyes/ConsoleChat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/without-eyes%2FConsoleChat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/without-eyes%2FConsoleChat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/without-eyes%2FConsoleChat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/without-eyes%2FConsoleChat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/without-eyes","download_url":"https://codeload.github.com/without-eyes/ConsoleChat/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/without-eyes%2FConsoleChat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35258965,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-08T02:00:06.796Z","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":["c11","chat-application","chat-client","chat-server","console-application","console-chat","console-chat-app","hamachi","linux","network-chat","networking","unix","windows","winsock","winsock2"],"created_at":"2024-11-08T22:29:19.373Z","updated_at":"2026-07-08T08:31:25.122Z","avatar_url":"https://github.com/without-eyes.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Console Chat Application\n\nA simple console-based chat application implemented in C that allows users to communicate over a network using Hamachi.\n\n## Table of Contents\n\n- [Features](#features)\n- [Prerequisites](#prerequisites)\n- [Installation](#installation)\n- [Usage](#usage)\n- [How to Connect Using Hamachi](#how-to-connect-using-hamachi)\n- [Example](#example)\n- [License](#license)\n\n## Features\n\n- Simple console interface for sending and receiving messages.\n- Supports multiple clients connecting to a single server.\n- Easy setup using Hamachi for local network connections.\n\n## Prerequisites\n\nBefore you begin, ensure you have met the following requirements:\n\n- A C compiler (GCC, Clang, etc.)\n- Make (GNU make, MinGW make)\n- Hamachi installed and set up on your machine.\n- Basic knowledge of using the terminal/command line.\n\n## Installation\n\n1. **Clone the repository:**\n   ```bash\n   git clone https://github.com/without-eyes/ConsoleChat.git\n   cd ConsoleChat\n   ```\n\n2. **Use executables OR сompile the code:**\n   ```bash\n   make\n   ```\n\n## Usage\n\n1. **Start the Server:**\n   Open a terminal and run:\n   ```bash\n   ./server\n   ```\n   When prompted, enter the Hamachi IP address and port (e.g., 1111).\n\n2. **Start the Client:**\n   Open another terminal and run:\n   ```bash\n   ./client\n   ```\n   When prompted, enter the username, server's IP address and port (e.g., 1111).\n\n3. **Send Messages:**\n    - Type your message and press Enter to send it.\n    - Messages from other users will appear in the console.\n\n## How to Connect Using Hamachi\n\n1. **Install Hamachi:**\n   Download and install Hamachi from the official website: [Hamachi Download](https://vpn.net/)\n\n2. **Create or Join a Network:**\n    - Open Hamachi and create a new network or join an existing one by entering the network ID and password.\n\n3. **Find Your Hamachi IP Address:**\n    - Your Hamachi IP address will be displayed in the Hamachi window. Share this IP with other users to allow them to\n      connect to your server.\n\n4. **Configure Firewall:**\n    - Ensure that your firewall allows incoming connections on the specified port (default: 1111).\n\n## Example\n\n```plaintext\nEnter your username(or skip by pressing 'Enter'): without eyes    \nEnter IP address: X.X.X.X  # Replace with the Hamachi IP\nEnter port: 1111\nConnected!\n[without eyes] hello\n[anonymous] hi, how are you?\n```\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwithout-eyes%2Fconsolechat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwithout-eyes%2Fconsolechat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwithout-eyes%2Fconsolechat/lists"}