This project was a team project built during the 2025 Conestoga Computing Society Hackathon. We were tasked with implementing a technical solution to the United Nations Sustainable Development Goal #16; Peace, Justice, and Strong Institutions.
👉 Learn more about SDG #16: Peace, Justice, and Strong Institutions
Hate and division thrive in silence. When people stop talking, misunderstandings grow, and conflicts escalate. In today's polarized world, individuals are often judged based on labels rather than their actual beliefs. This division fuels hostility, making it harder to see the good in each other.
Open Mind is built to change that. By providing a space for open and respectful discussions, we aim to break down barriers, challenge misconceptions, and push for common ground. Our platform encourages civil conversations that help people recognize shared values rather than focusing solely on differences. Through dialogue, we can replace hostility with understanding, move past labels, and work toward a more united world.
- Graphical UI built with Raylib
- Real-time messaging using TCP/IP
- Custom prompts to lead conversations to middleground
- Sentiment Analysis to ensure conversation remain civil
- Threaded server architecture for scalability
- Secure and private chat environment
Open Mind follows a client-server architecture where users interact with a Raylib-based GUI. The Network Manager handles communication between the client and server via TCP/IP requests. The server manages multiple discussion rooms, each running on a separate thread.
flowchart LR
subgraph Client ["Client"]
GUI["GUI - Raylib"]
NM["Network Manager"]
MM["Message Manager"]
end
subgraph Server ["Server"]
API["Connection Handler"]
RM1["Room One"]
end
subgraph Client2 ["Client"]
GUI2["GUI - Raylib"]
NM2["Network Manager"]
MM2["Message Manager"]
end
GUI -->|User Input| NM
GUI -->|User Input| MM
NM -->|TCP Connection| API
API -->|Creates Thread| RM1
GUI2 -->|User Input| NM2
GUI2 -->|User Input| MM2
NM2 -->|TCP Connection| API
API -->|Creates Thread| RM1
This project is licensed under the MIT License - see the LICENSE file for details.
