Giter Club home page Giter Club logo

count-to-infinity's People

Contributors

codemaxx avatar divya-urs avatar tastelessjolt avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar

count-to-infinity's Issues

Parallelised v/s select statement

We'll have to discuss which one will work better for our use. From the top of my head, I think parallel thread reduce a little bit of control on what we do but they will, of course, be faster.

Transcripts for chat

The client should only see the chat of the latest session but should be able to request the whole transcript of the chat with the other user. Basically, the server is storing the chat. If we use encryption then the server should return the encrypted chat and it should be decrypted client side.

emojis

https://www.shoutmeloud.com/list-of-facebook-keyboard-shortcuts-and-emoticons.html

https://apps.timwhitlock.info/emoji/tables/unicode

Sample code:

#include <stdio.h>
#include <wchar.h>
#include <locale.h>
#include <iostream>

// Get the utf8 codes from https://apps.timwhitlock.info/emoji/tables/unicode

int main()
{
        //setlocale(LC_ALL, "en_US.utf8");
            
            const char martini_emoji[5] = {0xF0, 0x9F, 0x8D, 0xB8, '\0'};

                printf("Let's go drink some %s\n", martini_emoji);
                std::string msg = "\xF0\x9F\x98\x81";
                std::cout << msg << std::endl;
                std::string mar = "\U0001F378";
                mar = "\U0001F64F";
                std::cout << mar << std::endl;
                return 0;

}

Android client

Complete the android client.
Features to be implemented:

[ ] - Notifications
[ ] - block/unblock
[ ] - Reject request
[ ] - Group chat

Group Chat SEGFAULTs

There are some bugs in group chat. Causes segfault sometimes. No message delivery at other times.

Message buffers

I'm expecting a problem which we'll have to fix somehow. Notice the flow:

  1. You are typing a message on terminal to send to the other person
  2. The other person sends a message while you're typing
  3. The text you are typing will move up... you won't be able to continue what you are typing
  4. When you type a new message and send, then the previous text you wrote will also be sent since it is in the buffer.

We have to think how to fix this and if at all it can be fixed without a GUI.
@tastelessjolt

Status for users

The idea is to get a "Status" which appears every time you /chat a person.

Add block feature

A person can block another person. A conversation will not be possible between them after that. Unblocking also needs to be implemented

Web Client

Implement a web client for the whole chat app. There is some partial implementation in the code already.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.