Multi-Threaded Server


    Multiple users(clients) may want to access some information from the server. All of them may simultaneously request the resources from the server. For better user experience the server needs to be more responsive that is it should be able to process as many requests as possible. With the normal client-server model we will be able to process the request one by one which may not seem good to the user as the time delay for each request to be processed will be large.

    Full project description: Here

    ASCII Art Generator


    ASCII is a common encoding format used for representing strings and text data in computers. But…what if we use this for something other than text? How about images!

    Full project description: Here