Friday, July 3, 2015

First github project post !

https://github.com/MorrisLaw is where you can view my first github project commit. It's a client server application written in Java that I did in school last semester. It has some bugs because I have been making changes to the code. It's a work in progress.

The application has a client gui and a server gui. The client gui allows the user to sign in as themselves or as an anonymous user. The user can then click either yes or no and have the message sent to the server(which appears in the server gui). The server which will have a designated port number(either set by the user or left at default) is what receives the messages from the client. The server would then be started by hitting the start server button. To connect to the server the client gui has a field where the user can set the port number. The user would just need to match the port number to that of the server port number and then hit connect. The client can now send messages to the server. To disconnect the client the user would just have to select the disconnect button.

Eventually I'd like to create a web container for the application. I've been looking into Apache and such. I'll keep my blog updated on any progress regarding that.

No comments:

Post a Comment

Getting 60gb of Json Data into MySql

The other day I had write a 60gb Json file to a MySql database. The data was already clean and deduped, so all that had to be done was to wr...