/KodingProbs

Collage of programming challenges I attempted

Primary LanguageJava

KodingProbs

Collage of programming challenges I attempted:

  • MultiProtocolDownloader - Allow to download files using multiple protocols
  • BusRouteChallenge - Find if 2 bus stops are connected or not
  • DataPipelineTrivago - Given the data in one format, say xml, convert it to other say json
  • Gameserver - Setup the game server which run in distributed environment and allows the clients to be visible to all the servers once created
  • MultiStoreyCarParkingSystem - Create the car parking system
  • RestChatServer - Client server architecture like whatsapp
  • WynkServer - Create the server for handling rest request

HELP

Merging the smaller projects with history into this bigger project - https://stackoverflow.com/a/10548919/3222727

cd path/to/project-b
git remote add project-a path/to/project-a
git fetch project-a
git merge --allow-unrelated-histories project-a/master # or whichever branch you want to merge
git remote remove project-a