├── .gitignore ├── .gitignore.swp ├── README.md ├── c++ ├── byunsangheum │ └── prepare.txt ├── hyoungjunlee │ ├── class_test │ │ ├── CMakeLists.txt │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── main.cpp │ │ ├── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ │ ├── post │ │ │ ├── Post.cpp │ │ │ └── Post.h │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ ├── class_test_answer │ │ ├── CMakeLists.txt │ │ ├── board │ │ │ ├── controller │ │ │ │ ├── BoardController.cpp │ │ │ │ └── BoardController.h │ │ │ ├── entity │ │ │ │ ├── Board.cpp │ │ │ │ └── Board.h │ │ │ ├── repository │ │ │ │ ├── BoardRepository.h │ │ │ │ ├── BoardRepositoryImpl.cpp │ │ │ │ └── BoardRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── BoardService.h │ │ │ │ ├── BoardServiceImpl.cpp │ │ │ │ ├── BoardServiceImpl.h │ │ │ │ └── response │ │ │ │ ├── BoardResponse.cpp │ │ │ │ └── BoardResponse.h │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── main.cpp │ │ ├── mysql │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ │ └── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ ├── cpp_test │ │ ├── CMakeLists.txt │ │ ├── api │ │ │ ├── BoardApi.h │ │ │ ├── BoardApiTable.cpp │ │ │ ├── BoardApiTable.h │ │ │ ├── BoardApiTableMapper.h │ │ │ └── handler │ │ │ │ └── list │ │ │ │ └── BoardAPIListHandler.h │ │ ├── main.cpp │ │ └── mysql_test │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ ├── first_probs │ │ ├── CMakeLists.txt │ │ ├── coordinate │ │ │ ├── SphericalCoordinate.cpp │ │ │ └── SphericalCoordinate.h │ │ ├── inhomogeneous │ │ │ ├── Coordinate.cpp │ │ │ └── Coordinate.h │ │ ├── main.cpp │ │ ├── matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ ├── physics │ │ │ ├── displacement │ │ │ │ ├── Displacement.cpp │ │ │ │ └── Displacement.h │ │ │ └── velocity │ │ │ │ ├── Velocity.cpp │ │ │ │ └── Velocity.h │ │ ├── utility │ │ │ ├── RandomGenerator.cpp │ │ │ └── RandomGenerator.h │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ └── prepare.txt ├── jaelimlee │ ├── class_test │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ ├── controller │ │ │ │ ├── AccountController.cpp │ │ │ │ ├── AccountController.h │ │ │ │ ├── request_form │ │ │ │ │ ├── AccountLoginRequestForm.cpp │ │ │ │ │ ├── AccountLoginRequestForm.h │ │ │ │ │ ├── AccountRegisterRequestForm.cpp │ │ │ │ │ └── AccountRegisterRequestForm.h │ │ │ │ └── response_form │ │ │ │ │ ├── AccountLoginResponseForm.cpp │ │ │ │ │ ├── AccountLoginResponseForm.h │ │ │ │ │ ├── AccountRegisterResponseForm.cpp │ │ │ │ │ └── AccountRegisterResponseForm.h │ │ │ ├── entity │ │ │ │ ├── Account.cpp │ │ │ │ └── Account.h │ │ │ ├── repository │ │ │ │ ├── AccountRepository.h │ │ │ │ ├── AccountRepositoryImpl.cpp │ │ │ │ └── AccountRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── AccountService.h │ │ │ │ ├── AccountServiceImpl.cpp │ │ │ │ ├── AccountServiceImpl.h │ │ │ │ ├── request │ │ │ │ ├── AccountLoginRequest.cpp │ │ │ │ ├── AccountLoginRequest.h │ │ │ │ ├── AccountRegisterRequest.cpp │ │ │ │ └── AccountRegisterRequest.h │ │ │ │ └── response │ │ │ │ ├── AccountLoginResponse.cpp │ │ │ │ ├── AccountLoginResponse.h │ │ │ │ ├── AccountRegisterResponse.cpp │ │ │ │ └── AccountRegisterResponse.h │ │ ├── board │ │ │ ├── controller │ │ │ │ ├── BoardController.cpp │ │ │ │ ├── BoardController.h │ │ │ │ ├── request_form │ │ │ │ │ ├── BoardModifyRequestForm.cpp │ │ │ │ │ ├── BoardModifyRequestForm.h │ │ │ │ │ ├── BoardRegisterRequestForm.cpp │ │ │ │ │ └── BoardRegisterRequestForm.h │ │ │ │ └── response_form │ │ │ │ │ ├── BoardListResponseForm.cpp │ │ │ │ │ ├── BoardListResponseForm.h │ │ │ │ │ ├── BoardReadResponseForm.cpp │ │ │ │ │ ├── BoardReadResponseForm.h │ │ │ │ │ ├── BoardRegisterResponseForm.cpp │ │ │ │ │ └── BoardRegisterResponseForm.h │ │ │ ├── entity │ │ │ │ ├── Board.cpp │ │ │ │ └── Board.h │ │ │ ├── repository │ │ │ │ ├── BoardRepository.h │ │ │ │ ├── BoardRepositoryImpl.cpp │ │ │ │ └── BoardRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── BoardService.h │ │ │ │ ├── BoardServiceImpl.cpp │ │ │ │ ├── BoardServiceImpl.h │ │ │ │ ├── request │ │ │ │ ├── BoardModifyRequest.cpp │ │ │ │ ├── BoardModifyRequest.h │ │ │ │ ├── BoardRegisterRequest.cpp │ │ │ │ └── BoardRegisterRequest.h │ │ │ │ └── response │ │ │ │ ├── BoardReadResponse.cpp │ │ │ │ ├── BoardReadResponse.h │ │ │ │ ├── BoardRegisterResponse.cpp │ │ │ │ └── BoardRegisterResponse.h │ │ ├── console_ui │ │ │ ├── controller │ │ │ │ ├── ConsoleUiController.cpp │ │ │ │ ├── ConsoleUiController.h │ │ │ │ └── ConsoleUiControllerCommand.h │ │ │ ├── repository │ │ │ │ ├── ConsoleUiRepository.h │ │ │ │ ├── ConsoleUiRepositoryImpl.cpp │ │ │ │ └── ConsoleUiRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── ConsoleUiService.h │ │ │ │ ├── ConsoleUiServiceImpl.cpp │ │ │ │ └── ConsoleUiServiceImpl.h │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── main.cpp │ │ ├── mysql │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ │ ├── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ │ ├── tests │ │ │ ├── account │ │ │ │ └── entity │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── gtest_main.cpp │ │ │ └── gogo │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── gtest_main.cpp │ │ └── utility │ │ │ └── keyboard │ │ │ ├── user_keyboard_input.cpp │ │ │ └── user_keyboard_input.h │ ├── cpp_test │ │ ├── CMakeLists.txt │ │ ├── api │ │ │ ├── BoardApi.h │ │ │ ├── BoardApiTable.cpp │ │ │ ├── BoardApiTable.h │ │ │ ├── BoardApiTableMapper.h │ │ │ └── handler │ │ │ │ └── list │ │ │ │ └── BoardAPIListHandler.h │ │ ├── main.cpp │ │ └── mysql_test │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ ├── first_probs │ │ ├── CMakeLists.txt │ │ ├── coordinate │ │ │ ├── SphericalCoordinate.cpp │ │ │ └── SphericalCoordinate.h │ │ ├── inhomogeneous │ │ │ ├── Coordinate.cpp │ │ │ └── Coordinate.h │ │ ├── main.cpp │ │ ├── matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ ├── physics │ │ │ ├── displacement │ │ │ │ ├── Displacement.cpp │ │ │ │ └── Displacement.h │ │ │ └── velocity │ │ │ │ ├── Velocity.cpp │ │ │ │ └── Velocity.h │ │ ├── utility │ │ │ ├── RandomGenerator.cpp │ │ │ └── RandomGenerator.h │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ └── prepare.txt ├── jaeseunglee │ ├── .idea │ │ ├── .gitignore │ │ ├── jaeseunglee.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── class_test │ │ ├── CMakeLists.txt │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── displacement │ │ │ ├── Displacement.cpp │ │ │ └── Displacement.h │ │ ├── main.cpp │ │ ├── matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ ├── order │ │ │ ├── Order.cpp │ │ │ └── Order.h │ │ ├── orthogonal │ │ │ ├── Orthogonal.cpp │ │ │ └── Orthogonal.h │ │ ├── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ │ ├── post │ │ │ ├── Post.cpp │ │ │ └── Post.h │ │ ├── spherical │ │ │ ├── Spherical.cpp │ │ │ └── Spherical.h │ │ ├── triangle │ │ │ ├── Triangle.cpp │ │ │ └── Triangle.h │ │ ├── utility │ │ │ ├── Random_generator.cpp │ │ │ ├── Random_generator.h │ │ │ ├── System_changer.cpp │ │ │ └── System_changer.h │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ └── cpp_test │ │ ├── CMakeLists.txt │ │ ├── api │ │ ├── BoardApi.h │ │ ├── BoardApiTable.cpp │ │ ├── BoardApiTable.h │ │ ├── BoardApiTableMapper.h │ │ └── handler │ │ │ └── list │ │ │ └── BoardAPIListHandler.h │ │ ├── main.cpp │ │ └── mysql_test │ │ ├── DbProcess.cpp │ │ └── DbProcess.h ├── janghunpark │ ├── C++ Lecture Review │ ├── Matrix │ │ ├── CMakeLists.txt │ │ ├── Matrix.cpp │ │ ├── Matrix.h │ │ └── main.cpp │ ├── Test Info │ ├── cpp_class_questions │ │ ├── CMakeLists.txt │ │ ├── Cartesian │ │ │ ├── Cartesian.cpp │ │ │ └── Cartesian.h │ │ ├── array │ │ │ ├── Array.cpp │ │ │ └── Array.h │ │ ├── board │ │ │ ├── Board.cpp │ │ │ └── Board.h │ │ ├── dice │ │ │ ├── dice.cpp │ │ │ └── dice.h │ │ ├── displacement │ │ │ ├── Displacement.cpp │ │ │ └── Displacement.h │ │ ├── main.cpp │ │ ├── order │ │ │ ├── Order.cpp │ │ │ └── Order.h │ │ ├── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ ├── cpp_test │ │ ├── CMakeLists.txt │ │ ├── api │ │ │ ├── BoardApi.h │ │ │ ├── BoardApiTable.cpp │ │ │ ├── BoardApiTable.h │ │ │ ├── BoardApiTableMapper.h │ │ │ └── handler │ │ │ │ └── list │ │ │ │ └── BoardAPIListHandler.h │ │ ├── main.cpp │ │ └── mysql_test │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ ├── lecture_clone │ │ ├── class_test │ │ │ ├── CMakeLists.txt │ │ │ ├── account │ │ │ │ ├── controller │ │ │ │ │ ├── AccountController.cpp │ │ │ │ │ ├── AccountController.h │ │ │ │ │ ├── request_form │ │ │ │ │ │ ├── AccountLoginRequestForm.cpp │ │ │ │ │ │ ├── AccountLoginRequestForm.h │ │ │ │ │ │ ├── AccountRegisterRequestForm.cpp │ │ │ │ │ │ └── AccountRegisterRequestForm.h │ │ │ │ │ └── response_form │ │ │ │ │ │ ├── AccountLoginResponseForm.cpp │ │ │ │ │ │ ├── AccountLoginResponseForm.h │ │ │ │ │ │ ├── AccountRegisterResponseForm.cpp │ │ │ │ │ │ └── AccountRegisterResponseForm.h │ │ │ │ ├── entity │ │ │ │ │ ├── Account.cpp │ │ │ │ │ └── Account.h │ │ │ │ ├── repository │ │ │ │ │ ├── AccountRepository.h │ │ │ │ │ ├── AccountRepositoryImpl.cpp │ │ │ │ │ └── AccountRepositoryImpl.h │ │ │ │ └── service │ │ │ │ │ ├── AccountService.h │ │ │ │ │ ├── AccountServiceImpl.cpp │ │ │ │ │ ├── AccountServiceImpl.h │ │ │ │ │ ├── request │ │ │ │ │ ├── AccountLoginRequest.cpp │ │ │ │ │ ├── AccountLoginRequest.h │ │ │ │ │ ├── AccountRegisterRequest.cpp │ │ │ │ │ └── AccountRegisterRequest.h │ │ │ │ │ └── response │ │ │ │ │ ├── AccountLoginResponse.cpp │ │ │ │ │ ├── AccountLoginResponse.h │ │ │ │ │ ├── AccountRegisterResponse.cpp │ │ │ │ │ └── AccountRegisterResponse.h │ │ │ ├── board │ │ │ │ ├── controller │ │ │ │ │ ├── BoardController.cpp │ │ │ │ │ ├── BoardController.h │ │ │ │ │ ├── request_form │ │ │ │ │ │ ├── BoardModifyRequestForm.cpp │ │ │ │ │ │ ├── BoardModifyRequestForm.h │ │ │ │ │ │ ├── BoardRegisterRequestForm.cpp │ │ │ │ │ │ └── BoardRegisterRequestForm.h │ │ │ │ │ └── response_form │ │ │ │ │ │ ├── BoardListResponseForm.cpp │ │ │ │ │ │ ├── BoardListResponseForm.h │ │ │ │ │ │ ├── BoardReadResponseForm.cpp │ │ │ │ │ │ ├── BoardReadResponseForm.h │ │ │ │ │ │ ├── BoardRegisterResponseForm.cpp │ │ │ │ │ │ └── BoardRegisterResponseForm.h │ │ │ │ ├── entity │ │ │ │ │ ├── Board.cpp │ │ │ │ │ └── Board.h │ │ │ │ ├── repository │ │ │ │ │ ├── BoardRepository.h │ │ │ │ │ ├── BoardRepositoryImpl.cpp │ │ │ │ │ └── BoardRepositoryImpl.h │ │ │ │ └── service │ │ │ │ │ ├── BoardService.h │ │ │ │ │ ├── BoardServiceImpl.cpp │ │ │ │ │ ├── BoardServiceImpl.h │ │ │ │ │ ├── request │ │ │ │ │ ├── BoardModifyRequest.cpp │ │ │ │ │ ├── BoardModifyRequest.h │ │ │ │ │ ├── BoardRegisterRequest.cpp │ │ │ │ │ └── BoardRegisterRequest.h │ │ │ │ │ └── response │ │ │ │ │ ├── BoardReadResponse.cpp │ │ │ │ │ ├── BoardReadResponse.h │ │ │ │ │ ├── BoardRegisterResponse.cpp │ │ │ │ │ └── BoardRegisterResponse.h │ │ │ ├── console_ui │ │ │ │ ├── controller │ │ │ │ │ ├── ConsoleUiController.cpp │ │ │ │ │ ├── ConsoleUiController.h │ │ │ │ │ └── ConsoleUiControllerCommand.h │ │ │ │ ├── repository │ │ │ │ │ ├── ConsoleUiRepository.h │ │ │ │ │ ├── ConsoleUiRepositoryImpl.cpp │ │ │ │ │ └── ConsoleUiRepositoryImpl.h │ │ │ │ └── service │ │ │ │ │ ├── ConsoleUiService.h │ │ │ │ │ ├── ConsoleUiServiceImpl.cpp │ │ │ │ │ └── ConsoleUiServiceImpl.h │ │ │ ├── dice │ │ │ │ ├── Dice.cpp │ │ │ │ └── Dice.h │ │ │ ├── main.cpp │ │ │ ├── mysql │ │ │ │ ├── DbProcess.cpp │ │ │ │ └── DbProcess.h │ │ │ ├── player │ │ │ │ ├── Player.cpp │ │ │ │ └── Player.h │ │ │ ├── tests │ │ │ │ ├── gogo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── gtest_main.cpp │ │ │ │ └── ui │ │ │ │ │ └── ConsoleTest.cpp │ │ │ └── utility │ │ │ │ └── keyboard │ │ │ │ ├── user_keyboard_input.cpp │ │ │ │ └── user_keyboard_input.h │ │ ├── cpp_gtest │ │ │ ├── CMakeLists.txt │ │ │ ├── arithmetic │ │ │ │ ├── Add.cpp │ │ │ │ ├── Add.h │ │ │ │ ├── Sub.cpp │ │ │ │ └── Sub.h │ │ │ ├── function │ │ │ │ ├── SampleFunction.cpp │ │ │ │ └── SampleFunction.h │ │ │ ├── main.cpp │ │ │ └── tests │ │ │ │ ├── add │ │ │ │ └── add_test.cpp │ │ │ │ ├── function │ │ │ │ └── fucntion_test.cpp │ │ │ │ ├── sub │ │ │ │ └── sub_test.cpp │ │ │ │ └── test_main.cpp │ │ ├── cpp_test │ │ │ ├── CMakeLists.txt │ │ │ ├── api │ │ │ │ ├── BoardApi.h │ │ │ │ ├── BoardApiTable.cpp │ │ │ │ ├── BoardApiTable.h │ │ │ │ ├── BoardApiTableMapper.h │ │ │ │ └── handler │ │ │ │ │ └── list │ │ │ │ │ └── BoardAPIListHandler.h │ │ │ ├── main.cpp │ │ │ └── mysql_test │ │ │ │ ├── DbProcess.cpp │ │ │ │ └── DbProcess.h │ │ └── first_probs │ │ │ ├── CMakeLists.txt │ │ │ ├── coordinate │ │ │ ├── SphericalCoordinate.cpp │ │ │ └── SphericalCoordinate.h │ │ │ ├── inhomogeneous │ │ │ ├── Coordinate.cpp │ │ │ └── Coordinate.h │ │ │ ├── main.cpp │ │ │ ├── matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ │ ├── physics │ │ │ ├── displacement │ │ │ │ ├── Displacement.cpp │ │ │ │ └── Displacement.h │ │ │ └── velocity │ │ │ │ ├── Velocity.cpp │ │ │ │ └── Velocity.h │ │ │ ├── tests │ │ │ └── gogo │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── gtest_main.cpp │ │ │ ├── utility │ │ │ ├── RandomGenerator.cpp │ │ │ └── RandomGenerator.h │ │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ ├── newUi │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── ui │ │ │ └── console │ │ │ ├── controller │ │ │ ├── ConsoleUiController.cpp │ │ │ ├── ConsoleUiController.h │ │ │ └── request │ │ │ │ ├── ConsoleUiAccountLoginRequest.cpp │ │ │ │ └── ConsoleUiAccountLoginRequest.h │ │ │ ├── service │ │ │ ├── ConsoleUiService.h │ │ │ ├── ConsoleUiServiceImpl.cpp │ │ │ └── ConsoleUiServiceImpl.h │ │ │ └── user_keyboard │ │ │ ├── user_keyboard_input.cpp │ │ │ └── user_keyboard_input.h │ └── prepare.txt ├── junghunwoo │ ├── CMakeLists.txt │ ├── class_test │ │ ├── CMakeLists.txt │ │ ├── board │ │ │ ├── controller │ │ │ │ ├── BoardController.cpp │ │ │ │ └── BoardController.h │ │ │ ├── entity │ │ │ │ ├── Board.cpp │ │ │ │ └── Board.h │ │ │ ├── insert │ │ │ │ ├── BoardInsert.h │ │ │ │ ├── BoardInsertmpl.cpp │ │ │ │ └── BoardInsertmpl.h │ │ │ ├── repository │ │ │ │ ├── BoardRepository.h │ │ │ │ ├── BoardRepositoryImpl.cpp │ │ │ │ └── BoardRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── BoardService.h │ │ │ │ ├── BoardServiceImpl.cpp │ │ │ │ ├── BoardServiceImpl.h │ │ │ │ └── response │ │ │ │ ├── BoardResponse.cpp │ │ │ │ └── BoardResponse.h │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── main.cpp │ │ ├── matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ ├── mysql │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ │ ├── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ │ ├── post │ │ │ ├── Post.cpp │ │ │ └── Post.h │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ ├── cpp_test │ │ ├── CMakeLists.txt │ │ ├── api │ │ │ ├── BoardApi.h │ │ │ ├── BoardApiTable.cpp │ │ │ ├── BoardApiTable.h │ │ │ ├── BoardApiTableMapper.h │ │ │ └── handler │ │ │ │ └── list │ │ │ │ └── BoardAPIListHandler.h │ │ ├── main.cpp │ │ └── mysql_test │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ ├── main.cpp │ └── prepare.txt ├── junghwancho │ ├── class │ │ ├── CMakeLists.txt │ │ ├── board │ │ │ ├── controller │ │ │ │ ├── BoardController.cpp │ │ │ │ └── BoardController.h │ │ │ ├── entity │ │ │ │ ├── Board.cpp │ │ │ │ └── Board.h │ │ │ ├── repository │ │ │ │ ├── BoardRepository.h │ │ │ │ ├── BoardRepositoryImpl.cpp │ │ │ │ └── BoardRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── BoardService.h │ │ │ │ ├── BoardServiceImpl.cpp │ │ │ │ ├── BoardServiceImpl.h │ │ │ │ └── response │ │ │ │ ├── BoardResponse.cpp │ │ │ │ └── BoardResponse.h │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── main.cpp │ │ ├── mysql │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ │ └── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ ├── class_test │ │ ├── CMakeLists.txt │ │ ├── board │ │ │ ├── controller │ │ │ │ ├── BoardController.cpp │ │ │ │ └── BoardController.h │ │ │ ├── entity │ │ │ │ ├── Board.cpp │ │ │ │ └── Board.h │ │ │ ├── repository │ │ │ │ ├── BoardRepository.h │ │ │ │ ├── BoardRepositoryImpl.cpp │ │ │ │ └── BoardRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── BoardService.h │ │ │ │ ├── BoardServiceImpl.cpp │ │ │ │ ├── BoardServiceImpl.h │ │ │ │ └── response │ │ │ │ ├── BoardResponse.cpp │ │ │ │ └── BoardResponse.h │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── main.cpp │ │ ├── mysql │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ │ └── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ ├── class_test_mine │ │ ├── CMakeLists.txt │ │ ├── board │ │ │ ├── Board.cpp │ │ │ └── Board.h │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── main.cpp │ │ ├── matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ ├── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ ├── copy_board │ │ └── console_ui │ │ │ └── controller │ │ │ ├── ConsoleUiController.cpp │ │ │ ├── ConsoleUiController.h │ │ │ └── ConsoleUiControllerCommand.h │ ├── cpp_test │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── cpp_test.iml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── CMakeLists.txt │ │ ├── api │ │ │ ├── BoardApi.h │ │ │ ├── BoardApiTable.cpp │ │ │ ├── BoardApiTable.h │ │ │ ├── BoardApiTableMapper.h │ │ │ └── handler │ │ │ │ └── list │ │ │ │ └── BoardAPIListHandler.h │ │ ├── cmake-build-debug │ │ │ ├── .cmake │ │ │ │ └── api │ │ │ │ │ └── v1 │ │ │ │ │ ├── query │ │ │ │ │ ├── cache-v2 │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ ├── codemodel-v2 │ │ │ │ │ └── toolchains-v1 │ │ │ │ │ └── reply │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ └── toolchains-v1-ef25b586cdbfe8d5cf12.json │ │ │ ├── .ninja_deps │ │ │ ├── .ninja_log │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.26.4 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ └── CMakeCCompilerId.c │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ └── CMakeCXXCompilerId.cpp │ │ │ │ ├── CMakeConfigureLog.yaml │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── clion-Debug-log.txt │ │ │ │ ├── clion-environment.txt │ │ │ │ ├── cmake.check_cache │ │ │ │ └── rules.ninja │ │ │ ├── build.ninja │ │ │ └── cmake_install.cmake │ │ ├── main.cpp │ │ └── mysql_test │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ ├── cpp_test_account │ │ ├── CMakeLists.txt │ │ ├── UI │ │ │ ├── GetUserKeyboardInput.cpp │ │ │ └── GetUserKeyboardInput.h │ │ ├── api │ │ │ ├── BoardApi.h │ │ │ ├── BoardApiTable.cpp │ │ │ ├── BoardApiTable.h │ │ │ ├── BoardApiTableMapper.h │ │ │ └── handler │ │ │ │ └── list │ │ │ │ └── BoardAPIListHandler.h │ │ ├── main.cpp │ │ └── mysql_test │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ ├── first_probs │ │ ├── CMakeLists.txt │ │ ├── coordinate │ │ │ ├── SphericalCoordinate.cpp │ │ │ └── SphericalCoordinate.h │ │ ├── inhomogeneous │ │ │ ├── Coordinate.cpp │ │ │ └── Coordinate.h │ │ ├── main.cpp │ │ ├── matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ ├── physics │ │ │ ├── displacement │ │ │ │ ├── Displacement.cpp │ │ │ │ └── Displacement.h │ │ │ └── velocity │ │ │ │ ├── Velocity.cpp │ │ │ │ └── Velocity.h │ │ ├── utility │ │ │ ├── RandomGenerator.cpp │ │ │ └── RandomGenerator.h │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ └── prob_class │ │ ├── CMakeLists.txt │ │ └── main.cpp ├── junyeonkim │ └── prepare.txt ├── lecture │ ├── class_test │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ ├── controller │ │ │ │ ├── AccountController.cpp │ │ │ │ ├── AccountController.h │ │ │ │ ├── request_form │ │ │ │ │ ├── AccountLoginRequestForm.cpp │ │ │ │ │ ├── AccountLoginRequestForm.h │ │ │ │ │ ├── AccountRegisterRequestForm.cpp │ │ │ │ │ └── AccountRegisterRequestForm.h │ │ │ │ └── response_form │ │ │ │ │ ├── AccountLoginResponseForm.cpp │ │ │ │ │ ├── AccountLoginResponseForm.h │ │ │ │ │ ├── AccountRegisterResponseForm.cpp │ │ │ │ │ └── AccountRegisterResponseForm.h │ │ │ ├── entity │ │ │ │ ├── Account.cpp │ │ │ │ └── Account.h │ │ │ ├── repository │ │ │ │ ├── AccountRepository.h │ │ │ │ ├── AccountRepositoryImpl.cpp │ │ │ │ └── AccountRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── AccountService.h │ │ │ │ ├── AccountServiceImpl.cpp │ │ │ │ ├── AccountServiceImpl.h │ │ │ │ ├── request │ │ │ │ ├── AccountLoginRequest.cpp │ │ │ │ ├── AccountLoginRequest.h │ │ │ │ ├── AccountRegisterRequest.cpp │ │ │ │ └── AccountRegisterRequest.h │ │ │ │ └── response │ │ │ │ ├── AccountLoginResponse.cpp │ │ │ │ ├── AccountLoginResponse.h │ │ │ │ ├── AccountRegisterResponse.cpp │ │ │ │ └── AccountRegisterResponse.h │ │ ├── board │ │ │ ├── controller │ │ │ │ ├── BoardController.cpp │ │ │ │ ├── BoardController.h │ │ │ │ ├── request_form │ │ │ │ │ ├── BoardModifyRequestForm.cpp │ │ │ │ │ ├── BoardModifyRequestForm.h │ │ │ │ │ ├── BoardRegisterRequestForm.cpp │ │ │ │ │ └── BoardRegisterRequestForm.h │ │ │ │ └── response_form │ │ │ │ │ ├── BoardListResponseForm.cpp │ │ │ │ │ ├── BoardListResponseForm.h │ │ │ │ │ ├── BoardReadResponseForm.cpp │ │ │ │ │ ├── BoardReadResponseForm.h │ │ │ │ │ ├── BoardRegisterResponseForm.cpp │ │ │ │ │ └── BoardRegisterResponseForm.h │ │ │ ├── entity │ │ │ │ ├── Board.cpp │ │ │ │ └── Board.h │ │ │ ├── repository │ │ │ │ ├── BoardRepository.h │ │ │ │ ├── BoardRepositoryImpl.cpp │ │ │ │ └── BoardRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── BoardService.h │ │ │ │ ├── BoardServiceImpl.cpp │ │ │ │ ├── BoardServiceImpl.h │ │ │ │ ├── request │ │ │ │ ├── BoardModifyRequest.cpp │ │ │ │ ├── BoardModifyRequest.h │ │ │ │ ├── BoardRegisterRequest.cpp │ │ │ │ └── BoardRegisterRequest.h │ │ │ │ └── response │ │ │ │ ├── BoardReadResponse.cpp │ │ │ │ ├── BoardReadResponse.h │ │ │ │ ├── BoardRegisterResponse.cpp │ │ │ │ └── BoardRegisterResponse.h │ │ ├── console_ui │ │ │ ├── controller │ │ │ │ ├── ConsoleUiController.cpp │ │ │ │ ├── ConsoleUiController.h │ │ │ │ └── ConsoleUiControllerCommand.h │ │ │ ├── repository │ │ │ │ ├── ConsoleUiRepository.h │ │ │ │ ├── ConsoleUiRepositoryImpl.cpp │ │ │ │ └── ConsoleUiRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── ConsoleUiService.h │ │ │ │ ├── ConsoleUiServiceImpl.cpp │ │ │ │ └── ConsoleUiServiceImpl.h │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── main.cpp │ │ ├── mysql │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ │ ├── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ │ ├── tests │ │ │ └── account │ │ │ │ └── entity │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── gtest_main.cpp │ │ └── utility │ │ │ └── keyboard │ │ │ ├── user_keyboard_input.cpp │ │ │ └── user_keyboard_input.h │ ├── cpp_gtest │ │ ├── CMakeLists.txt │ │ ├── arithmetic │ │ │ ├── Add.cpp │ │ │ └── Add.h │ │ ├── main.cpp │ │ └── tests │ │ │ ├── add │ │ │ └── add_test.cpp │ │ │ └── test_main.cpp │ ├── cpp_test │ │ ├── CMakeLists.txt │ │ ├── api │ │ │ ├── BoardApi.h │ │ │ ├── BoardApiTable.cpp │ │ │ ├── BoardApiTable.h │ │ │ ├── BoardApiTableMapper.h │ │ │ └── handler │ │ │ │ └── list │ │ │ │ └── BoardAPIListHandler.h │ │ ├── main.cpp │ │ └── mysql_test │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ ├── first_probs │ │ ├── CMakeLists.txt │ │ ├── coordinate │ │ │ ├── SphericalCoordinate.cpp │ │ │ └── SphericalCoordinate.h │ │ ├── inhomogeneous │ │ │ ├── Coordinate.cpp │ │ │ └── Coordinate.h │ │ ├── main.cpp │ │ ├── matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ ├── physics │ │ │ ├── displacement │ │ │ │ ├── Displacement.cpp │ │ │ │ └── Displacement.h │ │ │ └── velocity │ │ │ │ ├── Velocity.cpp │ │ │ │ └── Velocity.h │ │ ├── utility │ │ │ ├── RandomGenerator.cpp │ │ │ └── RandomGenerator.h │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ └── prepare.txt ├── sanggunyoun │ ├── class_test │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ ├── controller │ │ │ │ ├── AccountController.cpp │ │ │ │ ├── AccountController.h │ │ │ │ ├── request_form │ │ │ │ │ ├── AccountLoginRequestForm.cpp │ │ │ │ │ ├── AccountLoginRequestForm.h │ │ │ │ │ ├── AccountRegisterRequestForm.cpp │ │ │ │ │ └── AccountRegisterRequestForm.h │ │ │ │ └── response_form │ │ │ │ │ ├── AccountLoginResponseForm.cpp │ │ │ │ │ ├── AccountLoginResponseForm.h │ │ │ │ │ ├── AccountRegisterResponseForm.cpp │ │ │ │ │ └── AccountRegisterResponseForm.h │ │ │ ├── entity │ │ │ │ ├── Account.cpp │ │ │ │ └── Account.h │ │ │ ├── repository │ │ │ │ ├── AccountRepository.h │ │ │ │ ├── AccountRepositoryImpl.cpp │ │ │ │ └── AccountRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── AccountService.h │ │ │ │ ├── AccountServiceImpl.cpp │ │ │ │ ├── AccountServiceImpl.h │ │ │ │ ├── request │ │ │ │ ├── AccountLoginRequest.cpp │ │ │ │ ├── AccountLoginRequest.h │ │ │ │ ├── AccountRegisterRequest.cpp │ │ │ │ └── AccountRegisterRequest.h │ │ │ │ └── response │ │ │ │ ├── AccountLoginResponse.cpp │ │ │ │ ├── AccountLoginResponse.h │ │ │ │ ├── AccountRegisterResponse.cpp │ │ │ │ └── AccountRegisterResponse.h │ │ ├── board │ │ │ ├── controller │ │ │ │ ├── BoardController.cpp │ │ │ │ ├── BoardController.h │ │ │ │ ├── request_form │ │ │ │ │ ├── BoardModifyRequestForm.cpp │ │ │ │ │ ├── BoardModifyRequestForm.h │ │ │ │ │ ├── BoardRegisterRequestForm.cpp │ │ │ │ │ └── BoardRegisterRequestForm.h │ │ │ │ └── response_form │ │ │ │ │ ├── BoardListResponseForm.cpp │ │ │ │ │ ├── BoardListResponseForm.h │ │ │ │ │ ├── BoardReadResponseForm.cpp │ │ │ │ │ ├── BoardReadResponseForm.h │ │ │ │ │ ├── BoardRegisterResponseForm.cpp │ │ │ │ │ └── BoardRegisterResponseForm.h │ │ │ ├── entity │ │ │ │ ├── Board.cpp │ │ │ │ └── Board.h │ │ │ ├── repository │ │ │ │ ├── BoardRepository.h │ │ │ │ ├── BoardRepositoryImpl.cpp │ │ │ │ └── BoardRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── BoardService.h │ │ │ │ ├── BoardServiceImpl.cpp │ │ │ │ ├── BoardServiceImpl.h │ │ │ │ ├── request │ │ │ │ ├── BoardModifyRequest.cpp │ │ │ │ ├── BoardModifyRequest.h │ │ │ │ ├── BoardRegisterRequest.cpp │ │ │ │ └── BoardRegisterRequest.h │ │ │ │ └── response │ │ │ │ ├── BoardReadResponse.cpp │ │ │ │ ├── BoardReadResponse.h │ │ │ │ ├── BoardRegisterResponse.cpp │ │ │ │ ├── BoardRegisterResponse.h │ │ │ │ ├── BoardResponse.cpp │ │ │ │ └── BoardResponse.h │ │ ├── console_ui │ │ │ ├── controller │ │ │ │ ├── ConsoleUiController.cpp │ │ │ │ ├── ConsoleUiController.h │ │ │ │ └── ConsoleUiControllerCommand.h │ │ │ ├── repository │ │ │ │ ├── ConsoleUiRepository.h │ │ │ │ ├── ConsoleUiRepositoryImpl.cpp │ │ │ │ └── ConsoleUiRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── ConsoleUiService.h │ │ │ │ ├── ConsoleUiServiceImpl.cpp │ │ │ │ └── ConsoleUiServiceImpl.h │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── main.cpp │ │ ├── mysql │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ │ ├── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ │ ├── tests │ │ │ └── account │ │ │ │ └── entity │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── gtest_main.cpp │ │ └── utility │ │ │ └── keyboard │ │ │ ├── user_keyboard_input.cpp │ │ │ └── user_keyboard_input.h │ ├── cpp_gtest │ │ ├── CMakeLists.txt │ │ ├── arithmetic │ │ │ ├── Add.cpp │ │ │ └── Add.h │ │ ├── main.cpp │ │ └── tests │ │ │ ├── add │ │ │ └── add_test.cpp │ │ │ ├── gogo │ │ │ ├── CMakeLists.txt │ │ │ └── gtest_main.cpp │ │ │ └── test_main.cpp │ ├── cpp_test │ │ ├── CMakeLists.txt │ │ ├── api │ │ │ ├── BoardApi.h │ │ │ ├── BoardApiTable.cpp │ │ │ ├── BoardApiTable.h │ │ │ ├── BoardApiTableMapper.h │ │ │ └── handler │ │ │ │ └── list │ │ │ │ └── BoardAPIListHandler.h │ │ ├── main.cpp │ │ └── mysql_test │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ ├── homework │ │ ├── class_test │ │ │ ├── 1dice │ │ │ │ ├── Dice.cpp │ │ │ │ └── Dice.h │ │ │ ├── 2player │ │ │ │ ├── Player.cpp │ │ │ │ └── Player.h │ │ │ ├── 3board │ │ │ │ ├── Board.cpp │ │ │ │ └── Board.h │ │ │ ├── 4vector │ │ │ │ ├── Vector.cpp │ │ │ │ └── Vector.h │ │ │ ├── 5matrix │ │ │ │ ├── Matrix.cpp │ │ │ │ └── Matrix.h │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ └── first_probs_class │ │ │ ├── CMakeLists.txt │ │ │ ├── coordinate │ │ │ ├── SphericalCoordinate.cpp │ │ │ └── SphericalCoordinate.h │ │ │ ├── inhomogeneous │ │ │ ├── Coordinate.cpp │ │ │ └── Coordinate.h │ │ │ ├── main.cpp │ │ │ ├── matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ │ ├── physics │ │ │ ├── displacement │ │ │ │ ├── Displacement.cpp │ │ │ │ └── Displacement.h │ │ │ └── velocity │ │ │ │ ├── Velocity.cpp │ │ │ │ └── Velocity.h │ │ │ ├── utility │ │ │ ├── RandomGenerator.cpp │ │ │ └── RandomGenerator.h │ │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ └── prepare.txt ├── seunghunjo │ ├── class_test │ │ ├── CMakeLists.txt │ │ ├── board │ │ │ ├── controller │ │ │ │ ├── BoardController.cpp │ │ │ │ └── BoardController.h │ │ │ ├── entity │ │ │ │ ├── Board.cpp │ │ │ │ └── Board.h │ │ │ ├── repository │ │ │ │ ├── BoardRepository.h │ │ │ │ ├── BoardRepositoryImpl.cpp │ │ │ │ └── BoardRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── BoardService.h │ │ │ │ ├── BoardServiceImpl.cpp │ │ │ │ ├── BoardServiceImpl.h │ │ │ │ └── response │ │ │ │ ├── BoardResponse.cpp │ │ │ │ └── BoardResponse.h │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── main.cpp │ │ ├── mysql │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ │ └── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ ├── cpp_test │ │ ├── CMakeLists.txt │ │ ├── api │ │ │ ├── BoardApi.h │ │ │ ├── BoardApiTable.cpp │ │ │ ├── BoardApiTable.h │ │ │ ├── BoardApiTableMapper.h │ │ │ └── handler │ │ │ │ └── list │ │ │ │ └── BoardAPIListHandler.h │ │ ├── main.cpp │ │ └── mysql_test │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ ├── first_probs │ │ ├── CMakeLists.txt │ │ ├── coordinate │ │ │ ├── SphericalCoordinate.cpp │ │ │ └── SphericalCoordinate.h │ │ ├── inhomogeneous │ │ │ ├── Coordinate.cpp │ │ │ └── Coordinate.h │ │ ├── main.cpp │ │ ├── matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ ├── physics │ │ │ ├── displacement │ │ │ │ ├── Displacement.cpp │ │ │ │ └── Displacement.h │ │ │ └── velocity │ │ │ │ ├── Velocity.cpp │ │ │ │ └── Velocity.h │ │ ├── utility │ │ │ ├── RandomGenerator.cpp │ │ │ └── RandomGenerator.h │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ └── prepare.txt ├── sunghwanpark │ └── prepare.txt ├── sungyonglee │ ├── class_test │ │ ├── CMakeLists.txt │ │ ├── board │ │ │ ├── controller │ │ │ │ ├── BoardController.cpp │ │ │ │ └── BoardController.h │ │ │ ├── entity │ │ │ │ ├── Board.cpp │ │ │ │ └── Board.h │ │ │ ├── repository │ │ │ │ ├── BoardRepository.h │ │ │ │ ├── BoardRepositoryImpl.cpp │ │ │ │ └── BoardRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── BoardService.h │ │ │ │ ├── BoardServiceImpl.cpp │ │ │ │ ├── BoardServiceImpl.h │ │ │ │ └── response │ │ │ │ ├── BoardResponse.cpp │ │ │ │ └── BoardResponse.h │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── main.cpp │ │ ├── mysql │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ │ └── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ ├── cpp_test │ │ ├── CMakeLists.txt │ │ ├── api │ │ │ ├── BoardApi.h │ │ │ ├── BoardApiTable.cpp │ │ │ ├── BoardApiTable.h │ │ │ ├── BoardApiTableMapper.h │ │ │ └── handler │ │ │ │ └── list │ │ │ │ └── BoardAPIListHandler.h │ │ ├── main.cpp │ │ └── mysql_test │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ ├── first_probs │ │ ├── CMakeLists.txt │ │ ├── coordinate │ │ │ ├── SphericalCoordinate.cpp │ │ │ └── SphericalCoordinate.h │ │ ├── inhomogeneous │ │ │ ├── Coordinate.cpp │ │ │ └── Coordinate.h │ │ ├── main.cpp │ │ ├── matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ ├── physics │ │ │ ├── displacement │ │ │ │ ├── Displacement.cpp │ │ │ │ └── Displacement.h │ │ │ └── velocity │ │ │ │ ├── Velocity.cpp │ │ │ │ └── Velocity.h │ │ ├── utility │ │ │ ├── RandomGenerator.cpp │ │ │ └── RandomGenerator.h │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ ├── prepare.txt │ └── prob_c++ │ │ ├── 1 │ │ ├── 1.cpp │ │ └── 1.h │ │ ├── 2 │ │ ├── 2.cpp │ │ └── 2.h │ │ ├── 3 │ │ ├── 3.cpp │ │ └── 3.h │ │ ├── 4 │ │ ├── 4.cpp │ │ └── 4.h │ │ ├── 5 │ │ ├── 5.cpp │ │ └── 5.h │ │ ├── CMakeLists.txt │ │ └── main.cpp ├── sungyoungjang │ ├── Practice1_1 │ │ ├── CMakeLists.txt │ │ ├── coordinate │ │ │ ├── SphericalCoordinate.cpp │ │ │ └── SphericalCoordinate.h │ │ ├── inhomogeneous │ │ │ ├── Coordinate.cpp │ │ │ └── Coordinate.h │ │ ├── main.cpp │ │ ├── matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ ├── physics │ │ │ ├── displacement │ │ │ │ ├── Displacement.cpp │ │ │ │ └── Displacement.h │ │ │ └── velocity │ │ │ │ ├── Velocity.cpp │ │ │ │ └── Velocity.h │ │ ├── utility │ │ │ ├── RandomGenerator.cpp │ │ │ └── RandomGenerator.h │ │ └── vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ ├── Practice_1 │ │ ├── 01_Dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── 02_Player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ │ ├── 03_Post │ │ │ ├── Post.cpp │ │ │ └── Post.h │ │ ├── 04_Vector │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ │ ├── 05_Matrix │ │ │ ├── Matrix.cpp │ │ │ └── Matrix.h │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── class_test │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ ├── controller │ │ │ │ ├── AccountController.cpp │ │ │ │ ├── AccountController.h │ │ │ │ ├── request_form │ │ │ │ │ ├── AccountLoginRequestForm.cpp │ │ │ │ │ ├── AccountLoginRequestForm.h │ │ │ │ │ ├── AccountRegisterRequestForm.cpp │ │ │ │ │ └── AccountRegisterRequestForm.h │ │ │ │ └── response_form │ │ │ │ │ ├── AccountLoginResponseForm.cpp │ │ │ │ │ ├── AccountLoginResponseForm.h │ │ │ │ │ ├── AccountRegisterResponseForm.cpp │ │ │ │ │ └── AccountRegisterResponseForm.h │ │ │ ├── entity │ │ │ │ ├── Account.cpp │ │ │ │ └── Account.h │ │ │ ├── repository │ │ │ │ ├── AccountRepository.h │ │ │ │ ├── AccountRepositoryImpl.cpp │ │ │ │ └── AccountRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── AccountService.h │ │ │ │ ├── AccountServiceImpl.cpp │ │ │ │ ├── AccountServiceImpl.h │ │ │ │ ├── request │ │ │ │ ├── AccountLoginRequest.cpp │ │ │ │ ├── AccountLoginRequest.h │ │ │ │ ├── AccountRegisterRequest.cpp │ │ │ │ └── AccountRegisterRequest.h │ │ │ │ └── response │ │ │ │ ├── AccountLoginResponse.cpp │ │ │ │ ├── AccountLoginResponse.h │ │ │ │ ├── AccountRegisterResponse.cpp │ │ │ │ └── AccountRegisterResponse.h │ │ ├── board │ │ │ ├── controller │ │ │ │ ├── BoardController.cpp │ │ │ │ ├── BoardController.h │ │ │ │ ├── request_form │ │ │ │ │ ├── BoardModifyRequestForm.cpp │ │ │ │ │ ├── BoardModifyRequestForm.h │ │ │ │ │ ├── BoardRegisterRequestForm.cpp │ │ │ │ │ └── BoardRegisterRequestForm.h │ │ │ │ └── response_form │ │ │ │ │ ├── BoardListResponseForm.cpp │ │ │ │ │ ├── BoardListResponseForm.h │ │ │ │ │ ├── BoardReadResponseForm.cpp │ │ │ │ │ ├── BoardReadResponseForm.h │ │ │ │ │ ├── BoardRegisterResponseForm.cpp │ │ │ │ │ └── BoardRegisterResponseForm.h │ │ │ ├── entity │ │ │ │ ├── Board.cpp │ │ │ │ └── Board.h │ │ │ ├── repository │ │ │ │ ├── BoardRepository.h │ │ │ │ ├── BoardRepositoryImpl.cpp │ │ │ │ └── BoardRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── BoardService.h │ │ │ │ ├── BoardServiceImpl.cpp │ │ │ │ ├── BoardServiceImpl.h │ │ │ │ ├── request │ │ │ │ ├── BoardModifyRequest.cpp │ │ │ │ ├── BoardModifyRequest.h │ │ │ │ ├── BoardRegisterRequest.cpp │ │ │ │ └── BoardRegisterRequest.h │ │ │ │ └── response │ │ │ │ ├── BoardReadResponse.cpp │ │ │ │ ├── BoardReadResponse.h │ │ │ │ ├── BoardRegisterResponse.cpp │ │ │ │ ├── BoardRegisterResponse.h │ │ │ │ ├── BoardResponse.cpp │ │ │ │ └── BoardResponse.h │ │ ├── console_ui │ │ │ ├── controller │ │ │ │ ├── ConsoleUiController.cpp │ │ │ │ ├── ConsoleUiController.h │ │ │ │ └── ConsoleUiControllerCommand.h │ │ │ ├── repository │ │ │ │ ├── ConsoleUiRepository.h │ │ │ │ ├── ConsoleUiRepositoryImpl.cpp │ │ │ │ └── ConsoleUiRepositoryImpl.h │ │ │ └── service │ │ │ │ ├── ConsoleUiService.h │ │ │ │ ├── ConsoleUiServiceImpl.cpp │ │ │ │ └── ConsoleUiServiceImpl.h │ │ ├── dice │ │ │ ├── Dice.cpp │ │ │ └── Dice.h │ │ ├── main.cpp │ │ ├── mysql │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ │ ├── player │ │ │ ├── Player.cpp │ │ │ └── Player.h │ │ ├── tests │ │ │ └── account │ │ │ │ └── entity │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── gtest_main.cpp │ │ └── utility │ │ │ └── keyboard │ │ │ ├── user_keyboard_input.cpp │ │ │ └── user_keyboard_input.h │ ├── cpp_test │ │ ├── CMakeLists.txt │ │ ├── api │ │ │ ├── BoardApi.h │ │ │ ├── BoardApiTable.cpp │ │ │ ├── BoardApiTable.h │ │ │ ├── BoardApiTableMapper.h │ │ │ └── handler │ │ │ │ └── list │ │ │ │ └── BoardAPIListHandler.h │ │ ├── main.cpp │ │ └── mysql_test │ │ │ ├── DbProcess.cpp │ │ │ └── DbProcess.h │ └── prepare.txt ├── yongsukchoi │ └── prepare.txt ├── youngchanhwang │ └── prepare.txt └── yunchanshin │ └── prepare.txt ├── c ├── byunsangheum │ ├── first │ │ ├── first.sln │ │ └── first │ │ │ ├── first.c │ │ │ ├── first.vcxproj │ │ │ ├── first.vcxproj.filters │ │ │ ├── fourth.c │ │ │ ├── fourth.h │ │ │ ├── second.c │ │ │ └── second.h │ ├── homework │ │ └── 변상흠.pdf │ ├── prepare.txt │ └── second │ │ ├── second.sln │ │ └── second │ │ ├── main.c │ │ ├── second.vcxproj │ │ └── second.vcxproj.filters ├── hyoungjunlee │ ├── GTEST_PRACTICE │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── simple │ │ │ ├── add.c │ │ │ └── add.h │ │ └── tests │ │ │ ├── add_test.cpp │ │ │ └── test_main.cpp │ ├── eighth │ │ ├── CMakeLists.txt │ │ ├── dice │ │ │ └── entity │ │ │ │ ├── dice.c │ │ │ │ └── dice.h │ │ ├── main.c │ │ ├── player │ │ │ └── entity │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ └── utility │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── eleventh │ │ ├── 11 │ │ │ └── 11.c │ │ ├── 12 │ │ │ └── 12.c │ │ ├── 13 │ │ │ ├── doit.c │ │ │ ├── doit.h │ │ │ ├── letsgo.c │ │ │ └── letsgo.h │ │ ├── 14 │ │ │ ├── cmp_num.c │ │ │ └── cmp_num.h │ │ ├── 15 │ │ │ ├── returntype.c │ │ │ └── returntype.h │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── multiple.c │ │ ├── multiple.h │ │ ├── seperate_int.c │ │ ├── seperate_int.h │ │ ├── seperate_other.c │ │ ├── seperate_other.h │ │ ├── shift.c │ │ └── shift.h │ ├── exception_test │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── exception.c │ │ │ └── exception.h │ │ ├── tests │ │ │ └── test_main.cpp │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── fifth │ │ └── fifth │ │ │ ├── fifth.sln │ │ │ └── fifth │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── fifth.vcxproj │ │ │ ├── fifth.vcxproj.filters │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── fourth │ │ └── fourth │ │ │ ├── Project1 │ │ │ ├── Project1.vcxproj │ │ │ ├── Project1.vcxproj.filters │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── main.c │ │ │ ├── malloc_test.c │ │ │ ├── malloc_test.h │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── win.c │ │ │ └── win.h │ │ │ └── fourth.sln │ ├── gtest_example │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ ├── how_to_use │ │ │ ├── how_to_tdd.cpp │ │ │ └── wanna_verify_some_functions.cpp │ │ │ └── test_main.cpp │ ├── homework │ │ ├── 3 │ │ │ └── homework 2 │ │ │ │ ├── Project1 │ │ │ │ ├── Project1.vcxproj │ │ │ │ ├── Project1.vcxproj.filters │ │ │ │ ├── dice_game.c │ │ │ │ ├── dice_game.h │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random_generator.c │ │ │ │ └── random_generator.h │ │ │ │ └── homework 2.sln │ │ └── homework3 │ │ │ └── homework3 │ │ │ ├── homework3.sln │ │ │ └── homework3 │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── homework3.vcxproj │ │ │ ├── homework3.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── player_info.c │ │ │ ├── player_info.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── winner_check.c │ │ │ └── winner_check.h │ ├── how_to_process_keyboard_input │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── ui │ │ │ └── console │ │ │ ├── user_keyboard_input.c │ │ │ └── user_keyboard_input.h │ ├── kingchobo2 │ │ ├── 1 │ │ │ ├── skimoney.c │ │ │ └── skimoney.h │ │ ├── 2 │ │ │ ├── get_divisor.c │ │ │ └── get_divisor.h │ │ ├── 3 │ │ │ ├── add_multiple.c │ │ │ └── add_multiple.h │ │ ├── 4 │ │ │ ├── rest_is_one.c │ │ │ └── rest_is_one.h │ │ ├── 5 │ │ │ ├── last_7multiple.c │ │ │ └── last_7multiple.h │ │ ├── 10 │ │ │ ├── gugudan.c │ │ │ └── gugudan.h │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── kingchobo3 │ │ ├── 1 │ │ │ ├── print_even_array.c │ │ │ └── print_even_array.h │ │ ├── 2 │ │ │ ├── play_hangman.c │ │ │ └── play_hangman.h │ │ ├── 3 │ │ │ ├── reverse_sort.c │ │ │ └── reverse_sort.h │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── memory_leak_check │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ └── test_main.cpp │ ├── nineth │ │ ├── CMakeLists.txt │ │ ├── main │ │ └── main.c │ ├── prac2 │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ └── test_main.cpp │ ├── prepare.txt │ ├── second │ │ ├── second.sln │ │ └── second │ │ │ ├── main.c │ │ │ ├── second.vcxproj │ │ │ └── second.vcxproj.filters │ ├── seventh │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ └── entity │ │ │ │ ├── account.c │ │ │ │ ├── account.h │ │ │ │ ├── account_manager.c │ │ │ │ └── account_manager.h │ │ ├── led │ │ │ └── entity │ │ │ │ ├── led.c │ │ │ │ └── led.h │ │ └── main.c │ ├── std1 │ │ ├── 1 │ │ │ ├── prob.c │ │ │ └── prob.h │ │ ├── 2 │ │ │ ├── prob2.c │ │ │ └── prob2.h │ │ ├── 3 │ │ │ ├── prob3.c │ │ │ └── prob3.h │ │ ├── 4 │ │ │ ├── prob4.c │ │ │ └── prob4.h │ │ ├── 5 │ │ │ ├── prob5.c │ │ │ └── prob5.h │ │ ├── 6 │ │ │ ├── prob6.c │ │ │ └── prob6.h │ │ ├── 7 │ │ │ ├── prob7.c │ │ │ └── prob7.h │ │ ├── 8 │ │ │ ├── prob8.c │ │ │ └── prob8.h │ │ ├── 9 │ │ │ ├── prob9.c │ │ │ └── prob9.h │ │ ├── 10 │ │ │ ├── prob10.c │ │ │ └── prob10.h │ │ ├── 11 │ │ │ ├── prob11.c │ │ │ └── prob11.h │ │ ├── 12 │ │ │ ├── prob12.c │ │ │ └── prob12.h │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── random_set │ │ │ ├── get_random.c │ │ │ └── get_random.h │ ├── tenth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_operation_response.c │ │ │ │ │ └── vector_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ ├── third │ │ └── third │ │ │ ├── third.sln │ │ │ └── third │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── print_even.c │ │ │ ├── print_even.h │ │ │ ├── print_even_advanced.c │ │ │ ├── print_even_advanced.h │ │ │ ├── print_random.c │ │ │ ├── print_random.h │ │ │ ├── random_dice.c │ │ │ ├── random_dice.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── resource.h │ │ │ ├── third.rc │ │ │ ├── third.vcxproj │ │ │ └── third.vcxproj.filters │ ├── thirteenth │ │ ├── CMakeLists.txt │ │ ├── created_file │ │ │ ├── format_test.txt │ │ │ └── 이거만들래.txt │ │ ├── file_io │ │ │ ├── how_to_make_file.c │ │ │ ├── how_to_make_file.h │ │ │ ├── how_to_read_content.c │ │ │ ├── how_to_read_content.h │ │ │ ├── how_to_write_content.c │ │ │ └── how_to_write_content.h │ │ ├── format_test │ │ │ ├── form_test.c │ │ │ ├── form_test.h │ │ │ ├── make_file_from_format.c │ │ │ ├── make_file_from_format.h │ │ │ ├── make_format_from_file.c │ │ │ └── make_format_from_file.h │ │ └── main.c │ └── vechomework │ │ ├── CMakeLists.txt │ │ ├── calculate.c │ │ ├── calculate.h │ │ ├── data.c │ │ ├── data.h │ │ ├── main.c │ │ ├── random.c │ │ └── random.h ├── jaelimlee │ ├── asm_ptr │ │ ├── .vscode │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── main │ │ └── main.c │ ├── ddd_test │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_operation_response.c │ │ │ │ │ └── vector_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ ├── eighth │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── dice │ │ │ └── entity │ │ │ │ ├── dice.c │ │ │ │ └── dice.h │ │ ├── main.c │ │ ├── player │ │ │ └── entity │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ └── utility │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── fifth │ │ ├── fifth.sln │ │ └── fifth │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── fifth.vcxproj │ │ │ ├── fifth.vcxproj.filters │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── first │ │ ├── first.sln │ │ └── first │ │ │ ├── first.c │ │ │ ├── first.vcxproj │ │ │ ├── first.vcxproj.filters │ │ │ ├── fourth.c │ │ │ ├── fourth.h │ │ │ ├── second.c │ │ │ └── second.h │ ├── fourth │ │ ├── fourth.sln │ │ └── fourth │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── fourth.vcxproj │ │ │ ├── fourth.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── malloc_test.c │ │ │ ├── malloc_test.h │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── win.c │ │ │ └── win.h │ ├── grammar-prob │ │ ├── 1 │ │ │ ├── grammar_prob_first.c │ │ │ └── grammar_prob_first.h │ │ ├── 2 │ │ │ ├── grammar_prob_second.c │ │ │ └── grammar_prob_second.h │ │ ├── 3 │ │ │ ├── grammar_prob_third.c │ │ │ └── grammar_prob_third.h │ │ ├── 4 │ │ │ ├── grammar_prob_fourth.c │ │ │ └── grammar_prob_fourth.h │ │ ├── 5 │ │ │ ├── grammar_prob_fifth.c │ │ │ └── grammar_prob_fifth.h │ │ ├── 6 │ │ │ ├── grammar_prob_sixth.c │ │ │ └── grammar_prob_sixth.h │ │ ├── 7 │ │ │ ├── grammar_prob_seventh.c │ │ │ └── grammar_prob_seventh.h │ │ ├── 8 │ │ │ ├── grammar_prob_eighth.c │ │ │ └── grammar_prob_eighth.h │ │ ├── 9 │ │ │ ├── grammar_prob_ninth.c │ │ │ └── grammar_prob_ninth.h │ │ ├── 10 │ │ │ ├── grammar_prob_tenth.c │ │ │ └── grammar_prob_tenth.h │ │ ├── 11 │ │ │ ├── grammar_prob_eleventh.c │ │ │ └── grammar_prob_eleventh.h │ │ ├── CMakeLists.txt │ │ ├── extra │ │ │ ├── i_wanna_return_float_random.c │ │ │ └── i_wanna_return_float_random.h │ │ ├── main.c │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── gtest_example │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ ├── how_to_use │ │ │ ├── how_to_tdd.cpp │ │ │ └── wanna_verify_some_functions.cpp │ │ │ └── test_main.cpp │ ├── gtest_practice │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── simple │ │ │ ├── add.c │ │ │ ├── add.h │ │ │ ├── sub.c │ │ │ └── sub.h │ │ └── tests │ │ │ ├── add_test.cpp │ │ │ ├── sub_test.cpp │ │ │ └── test_main.cpp │ ├── homework │ │ └── 어셈블리.pdf │ ├── homework3 │ │ ├── homework3.sln │ │ └── homework3 │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── homework3.vcxproj │ │ │ ├── homework3.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ └── random_generator.h │ ├── homework4 │ │ ├── homework4.sln │ │ └── homework4 │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── homework4.vcxproj │ │ │ ├── homework4.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ └── random_generator.h │ ├── homework5 │ │ ├── CMakeLists.txt │ │ ├── mian.c │ │ ├── random │ │ │ └── entity │ │ │ │ ├── random.c │ │ │ │ └── random.h │ │ └── vector │ │ │ └── entity │ │ │ ├── vector.c │ │ │ └── vector.h │ ├── homework_5 │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── random │ │ │ └── entity │ │ │ │ ├── random.c │ │ │ │ └── random.h │ │ └── vector │ │ │ └── entity │ │ │ ├── vector.c │ │ │ └── vector.h │ ├── how_to_process_keyboard_input │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── ui │ │ │ └── console │ │ │ ├── user_keyboard_input.c │ │ │ └── user_keyboard_input.h │ ├── memory_leak_check │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ └── test_main.cpp │ ├── nineth │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── practice │ │ ├── 6 │ │ │ ├── practice6.c │ │ │ └── practice6.h │ │ ├── 13 │ │ │ ├── practice13.c │ │ │ └── practice13.h │ │ ├── 14 │ │ │ ├── practice14.c │ │ │ └── practice14.h │ │ ├── 15 │ │ │ ├── practice15.c │ │ │ └── practice15.h │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── random │ │ │ ├── random.c │ │ │ └── random.h │ │ └── seperation │ │ │ ├── separation.c │ │ │ └── seperation.h │ ├── practice2 │ │ ├── 2 │ │ │ ├── second.c │ │ │ └── second.h │ │ ├── 3 │ │ │ ├── third.c │ │ │ └── third.h │ │ ├── 5 │ │ │ ├── fifth.c │ │ │ └── fifth.h │ │ ├── 6 │ │ │ ├── sixth.c │ │ │ └── sixth.h │ │ ├── 7 │ │ │ ├── seventh.c │ │ │ └── seventh.h │ │ ├── 8 │ │ │ ├── eighth.c │ │ │ └── eighth.h │ │ ├── 9 │ │ │ ├── ninth.c │ │ │ └── ninth.h │ │ ├── 10 │ │ │ ├── tenth.c │ │ │ └── tenth.h │ │ ├── 11 │ │ │ ├── eleventh.c │ │ │ └── eleventh.h │ │ ├── 12 │ │ │ ├── twelve.c │ │ │ └── twelve.h │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── prepare.txt │ ├── prob1 │ │ ├── 1 │ │ │ ├── func_var_first.c │ │ │ └── func_var_first.h │ │ ├── 2 │ │ │ ├── func_var_second.c │ │ │ └── func_var_second.h │ │ ├── 3 │ │ │ ├── func_var_third.c │ │ │ └── func_var_third.h │ │ ├── 4 │ │ │ ├── func_var_fourth.c │ │ │ └── func_var_fourth.h │ │ ├── 5 │ │ │ ├── func_var_fifth.c │ │ │ └── func_var_fifth.h │ │ ├── 6 │ │ │ ├── func_var_sixth.c │ │ │ └── func_var_sixth.h │ │ ├── 9 │ │ │ ├── func_var_ninth.c │ │ │ └── func_var_ninth.h │ │ ├── 10 │ │ │ ├── func_var_tenth.c │ │ │ └── func_var_tenth.h │ │ ├── 11 │ │ │ ├── func_var_eleventh.c │ │ │ └── func_var_eleventh.h │ │ ├── 13 │ │ │ ├── func_var_thirteenth.c │ │ │ └── func_var_thirteenth.h │ │ ├── 14 │ │ │ ├── func_var_fourteenth.c │ │ │ └── func_var_fourteenth.h │ │ ├── 15 │ │ │ ├── func_var_fifteenth.c │ │ │ └── func_var_fifteenth.h │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── second │ │ ├── second.sln │ │ └── second │ │ │ ├── main.c │ │ │ ├── second.vcxproj │ │ │ └── second.vcxproj.filters │ ├── seventh │ │ ├── .vscode │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ └── entity │ │ │ │ ├── account.c │ │ │ │ ├── account.h │ │ │ │ ├── account_manager.c │ │ │ │ └── account_manager.h │ │ ├── led │ │ │ └── entity │ │ │ │ ├── led.c │ │ │ │ └── led.h │ │ └── main.c │ ├── tenth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_operation_response.c │ │ │ │ │ └── vector_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ ├── third │ │ ├── third.sln │ │ └── third │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── print_even.c │ │ │ ├── print_even.h │ │ │ ├── print_even_advanced.c │ │ │ ├── print_even_advanced.h │ │ │ ├── print_random.c │ │ │ ├── print_random.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── third.vcxproj │ │ │ └── third.vcxproj.filters │ └── thirteenth │ │ ├── CMakeLists.txt │ │ ├── created_file │ │ ├── format_test.txt │ │ └── 이거만들래.txt │ │ ├── file_io │ │ ├── how_to_make_file.c │ │ ├── how_to_make_file.h │ │ ├── how_to_read_content.c │ │ ├── how_to_read_content.h │ │ ├── how_to_write_content.c │ │ └── how_to_write_content.h │ │ ├── format_test │ │ ├── form_test.c │ │ ├── form_test.h │ │ ├── make_file_from_format.c │ │ ├── make_file_from_format.h │ │ ├── make_format_from_file.c │ │ └── make_format_from_file.h │ │ └── main.c ├── jaeseunglee │ ├── eighth │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── dice │ │ │ └── entity │ │ │ │ ├── dice.c │ │ │ │ └── dice.h │ │ ├── main.c │ │ ├── player │ │ │ └── entity │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ └── utility │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── eleventh │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── ui │ │ │ └── console │ │ │ ├── user_keyboard_input.c │ │ │ └── user_keyboard_input.h │ ├── exception_test │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── exception.c │ │ │ └── exception.h │ │ ├── tests │ │ │ └── test_main.cpp │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── first │ │ ├── first.sln │ │ └── first │ │ │ ├── first.c │ │ │ ├── first.vcxproj │ │ │ ├── first.vcxproj.filters │ │ │ ├── fourth.c │ │ │ ├── fourth.h │ │ │ ├── second.c │ │ │ └── second.h │ ├── fourth │ │ ├── fourth.sln │ │ └── fourth │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── fourth.vcxproj │ │ │ ├── fourth.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── malloc.c │ │ │ ├── malloc.h │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── win.c │ │ │ └── win.h │ ├── google_test │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── simple │ │ │ ├── add.c │ │ │ └── add.h │ │ └── tests │ │ │ ├── add_test.cpp │ │ │ └── test_main.cpp │ ├── gtest_example │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ ├── how_to_use │ │ │ └── wanna_verify_some_functions.cpp │ │ │ └── test_main.cpp │ ├── homework │ │ ├── 1101 │ │ │ └── [이재승] 2회차 1차 과제 제출 [SDC-AI-x].pdf │ │ ├── 1103 │ │ │ ├── fifth │ │ │ │ ├── fifth.sln │ │ │ │ └── fifth │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── dice.c │ │ │ │ │ ├── dice.h │ │ │ │ │ ├── fifth.vcxproj │ │ │ │ │ ├── fifth.vcxproj.filters │ │ │ │ │ ├── game.c │ │ │ │ │ ├── game.h │ │ │ │ │ ├── main.c │ │ │ │ │ ├── player.c │ │ │ │ │ ├── player.h │ │ │ │ │ ├── random.c │ │ │ │ │ └── random.h │ │ │ └── hw_1103 │ │ │ │ ├── hw_1103.sln │ │ │ │ └── hw_1103 │ │ │ │ ├── dice.c │ │ │ │ ├── dice.h │ │ │ │ ├── fight.c │ │ │ │ ├── fight.h │ │ │ │ ├── hw_1103.vcxproj │ │ │ │ ├── hw_1103.vcxproj.filters │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random_generator.c │ │ │ │ └── random_generator.h │ │ └── 1110 │ │ │ ├── CMakeLists.txt │ │ │ ├── main.c │ │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ │ └── vector │ │ │ └── entity │ │ │ ├── vector.c │ │ │ └── vector.h │ ├── memory_leak_check │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ └── test_main.cpp │ ├── ninth │ │ ├── CMakeLists.txt │ │ ├── main │ │ └── main.c │ ├── prepare.txt │ ├── quiz │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── main │ │ │ ├── main.c │ │ │ ├── quiz │ │ │ ├── quiz.c │ │ │ └── quiz.h │ │ │ ├── quiz2 │ │ │ ├── quiz2.c │ │ │ └── quiz2.h │ │ │ └── random │ │ │ ├── random.c │ │ │ └── random.h │ ├── second │ │ ├── second.sln │ │ └── second │ │ │ ├── main.c │ │ │ ├── second.vcxproj │ │ │ └── second.vcxproj.filters │ ├── tenth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_random_operation_response.c │ │ │ │ │ └── vector_random_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_cammand_handler.c │ │ │ │ └── vector_store_in_memory_cammand_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ ├── third │ │ ├── third.sln │ │ └── third │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── print_even.c │ │ │ ├── print_even.h │ │ │ ├── print_even_advanced.c │ │ │ ├── print_even_advanced.h │ │ │ ├── print_random.c │ │ │ ├── print_random.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── resource.h │ │ │ ├── third.rc │ │ │ ├── third.vcxproj │ │ │ └── third.vcxproj.filters │ └── thirteenth │ │ ├── CMakeLists.txt │ │ ├── created_file │ │ ├── format_test.txt │ │ └── 이거만들래.txt │ │ ├── file_io │ │ ├── how_to_make_file.c │ │ ├── how_to_make_file.h │ │ ├── how_to_read_content.c │ │ ├── how_to_read_content.h │ │ ├── how_to_write_content.c │ │ └── how_to_write_content.h │ │ ├── format_test │ │ ├── format_test.c │ │ ├── format_test.h │ │ ├── make_file_from_format .c │ │ ├── make_file_from_format.h │ │ ├── make_format_from_file.c │ │ └── make_format_from_file.h │ │ └── main.c ├── janghunpark │ ├── 0. homework │ │ ├── 231101 │ │ │ └── 2회차 1차 과제 제출 [SDC-AI-x].pdf │ │ ├── 231102 │ │ │ ├── 3회차 과제 logic [SDC-AI-x].jpg │ │ │ └── dice │ │ │ │ ├── dice.sln │ │ │ │ └── dice │ │ │ │ ├── dice.vcxproj │ │ │ │ ├── dice.vcxproj.filters │ │ │ │ ├── main.c │ │ │ │ └── random_dice.h │ │ └── 231103 │ │ │ └── dice_game_advanced │ │ │ ├── dice_game_advanced.sln │ │ │ └── dice_game_advanced │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── dice_game_advanced.vcxproj │ │ │ ├── dice_game_advanced.vcxproj.filters │ │ │ ├── even.c │ │ │ ├── even.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── skill_set.h │ │ │ ├── winner.c │ │ │ └── winner.h │ ├── C Lectures Review │ ├── CMakeLists.txt │ ├── basic_grammer │ │ ├── 8 │ │ │ ├── dynamic_array.c │ │ │ └── dynamic_array.h │ │ ├── 9 │ │ │ ├── array_pointer.c │ │ │ └── array_pointer.h │ │ ├── 11 │ │ │ ├── kda.c │ │ │ └── kda.h │ │ ├── 12 │ │ │ ├── player.c │ │ │ └── player.h │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── random │ │ │ ├── random.c │ │ │ └── random.h │ ├── basic_questions2 │ │ ├── 1 │ │ │ ├── ski.c │ │ │ └── ski.h │ │ ├── 2 │ │ │ ├── divisor.c │ │ │ └── divisor.h │ │ ├── 3 │ │ │ ├── multiples_of_three.c │ │ │ └── multiples_of_three.h │ │ ├── 4 │ │ │ ├── remainder_one.c │ │ │ └── remainder_one.h │ │ ├── 9 │ │ │ ├── mutiplication_table.c │ │ │ └── mutiplication_table.h │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── class_notes │ │ ├── for_team_homework_1 │ │ ├── 개인 공부 내용 정리 │ │ └── 필기노트 │ ├── dice │ │ ├── dice.sln │ │ └── dice │ │ │ ├── dice.vcxproj │ │ │ ├── dice.vcxproj.filters │ │ │ ├── main.c │ │ │ └── random_dice.h │ ├── domain QA │ ├── eighth │ │ └── eighth │ │ │ ├── .vscode │ │ │ └── tasks.json │ │ │ ├── CMakeLists.txt │ │ │ ├── dice │ │ │ └── entity │ │ │ │ ├── dice.c │ │ │ │ └── dice.h │ │ │ ├── main.c │ │ │ ├── player │ │ │ └── entity │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ │ └── utility │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── eleventh │ │ ├── 1 │ │ │ ├── first_prob.c │ │ │ └── first_prob.h │ │ ├── 2 │ │ │ ├── second_prob.c │ │ │ └── second_prob.h │ │ ├── 3 │ │ │ ├── third_prob.c │ │ │ └── third_prob.h │ │ ├── 4 │ │ │ ├── fourth_prob.c │ │ │ └── fourth_prob.h │ │ ├── 5 │ │ │ ├── fifth_prob.c │ │ │ └── fifth_prob.h │ │ ├── 6 │ │ │ ├── sixth_prob.c │ │ │ └── sixth_prob.h │ │ ├── 8 │ │ │ ├── eighth_prob.c │ │ │ └── eighth_prob.h │ │ ├── 9 │ │ │ ├── ninth_prob.c │ │ │ └── ninth_prob.h │ │ ├── 10 │ │ │ ├── tenth_prob.c │ │ │ └── tenth_prob.h │ │ ├── 13 │ │ │ ├── thirteenth_prob.c │ │ │ └── thirteenth_prob.h │ │ ├── 14 │ │ │ ├── fourteenth_prob.c │ │ │ └── fourteenth_prob.h │ │ ├── 15 │ │ │ ├── fifteenth_prob.c │ │ │ └── fifteenth_prob.h │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── utility │ │ │ └── random │ │ │ ├── random.c │ │ │ └── random.h │ ├── first │ │ ├── first.sln │ │ └── first │ │ │ ├── first.c │ │ │ ├── first.vcxproj │ │ │ ├── first.vcxproj.filters │ │ │ ├── forth.c │ │ │ ├── forth.h │ │ │ ├── second.c │ │ │ └── second.h │ ├── fourth │ │ ├── homework2.sln │ │ └── homework2 │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── homework2.vcxproj │ │ │ ├── homework2.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── malloc_test.c │ │ │ ├── malloc_test.h │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── win.c │ │ │ └── win.h │ ├── gtest_example │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ ├── how_to_use │ │ │ ├── how_to_tdd.cpp │ │ │ └── wanna_verify_some_functions.cpp │ │ │ └── test_main.cpp │ ├── gtest_practice │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── simple │ │ │ ├── add.c │ │ │ └── add.h │ │ └── tests │ │ │ ├── add_test.cpp │ │ │ └── test_main.cpp │ ├── homework │ │ ├── 2회차 1차 과제 제출 [SDC-AI-x].pdf │ │ ├── 3회차 과제 logic [SDC-AI-x].jpg │ │ ├── homework_vector │ │ │ └── relative_vector │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.c │ │ │ │ ├── utility │ │ │ │ └── random │ │ │ │ │ ├── random.c │ │ │ │ │ └── random.h │ │ │ │ └── vector │ │ │ │ └── entity │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ └── relative_vector │ │ │ └── relative_vector │ │ │ ├── CMakeLists.txt │ │ │ ├── main.c │ │ │ ├── utility │ │ │ ├── calculation │ │ │ │ ├── calculation.c │ │ │ │ └── calculation.h │ │ │ └── random │ │ │ │ ├── random.c │ │ │ │ └── random.h │ │ │ └── vector │ │ │ └── entity │ │ │ ├── vector.c │ │ │ └── vector.h │ ├── homework3 │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ └── entity │ │ │ ├── vector.c │ │ │ └── vector.h │ ├── homework_two_people_dice_game │ │ ├── homework_two_people_dice_game.sln │ │ └── homework_two_people_dice_game │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── generate_random.c │ │ │ ├── generate_random.h │ │ │ ├── homework_two_people_dice_game.vcxproj │ │ │ ├── homework_two_people_dice_game.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── players.c │ │ │ ├── players.h │ │ │ └── sub.c │ ├── nineth │ │ ├── CMakeLists.txt │ │ ├── main │ │ └── main.c │ ├── prepare.txt │ ├── second │ │ ├── second.sln │ │ └── second │ │ │ ├── main.c │ │ │ ├── second.vcxproj │ │ │ └── second.vcxproj.filters │ ├── seventh │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ └── entity │ │ │ │ ├── account.c │ │ │ │ ├── account.h │ │ │ │ ├── account_manager.c │ │ │ │ └── account_manager.h │ │ ├── led │ │ │ └── entity │ │ │ │ ├── led.c │ │ │ │ └── led.h │ │ └── main.c │ ├── tenth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_operation_response.c │ │ │ │ │ └── vector_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ ├── third │ │ ├── third.sln │ │ └── third │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── dice_random.c │ │ │ ├── dice_random.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── print_even.c │ │ │ ├── print_even.h │ │ │ ├── print_even_advanced.c │ │ │ ├── print_even_advanced.h │ │ │ ├── print_random.c │ │ │ ├── print_random.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── third.vcxproj │ │ │ └── third.vcxproj.filters │ └── thirteenth │ │ ├── CMakeLists.txt │ │ ├── created_file │ │ ├── format_test.txt │ │ └── 코딩빡시네.txt │ │ ├── file_io │ │ ├── how_to_make_file.c │ │ ├── how_to_make_file.h │ │ ├── how_to_read_content.c │ │ ├── how_to_read_content.h │ │ ├── how_to_write_content .c │ │ └── how_to_write_content.h │ │ ├── format_test │ │ ├── format_test.c │ │ ├── format_test.h │ │ ├── make_file_from_format.c │ │ ├── make_file_from_format.h │ │ ├── make_format_from_file.c │ │ └── make_format_from_file.h │ │ └── main.c ├── junghunwoo │ ├── eighth │ │ ├── .vscode │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── dice │ │ │ └── entity │ │ │ │ ├── dice.c │ │ │ │ └── dice.h │ │ ├── main │ │ ├── main.c │ │ ├── player │ │ │ └── entity │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ └── utility │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── exception_test │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── exception.c │ │ │ └── exception.h │ │ ├── tests │ │ │ └── test_main.cpp │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── fifth │ │ ├── fifth.sln │ │ └── fifth │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── fifth.vcxproj │ │ │ ├── fifth.vcxproj.filters │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── first │ │ ├── first.sln │ │ └── first │ │ │ ├── first.c │ │ │ ├── first.vcxproj │ │ │ ├── first.vcxproj.filters │ │ │ ├── fourth.c │ │ │ ├── fourth.h │ │ │ ├── second.c │ │ │ └── second.h │ ├── fourth │ │ ├── fourth.sln │ │ └── fourth │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── fourth.vcxproj │ │ │ ├── fourth.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── malloc_test.c │ │ │ ├── malloc_test.h │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── win.c │ │ │ └── win.h │ ├── gtest_practice │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── simple │ │ │ ├── add.c │ │ │ ├── add.h │ │ │ ├── sub.c │ │ │ └── sub.h │ │ └── tests │ │ │ ├── add_test.cpp │ │ │ ├── sub_test.cpp │ │ │ └── test_main.cpp │ ├── homework │ │ ├── 1-2 │ │ │ ├── 2차 과제.odp │ │ │ └── 2차 과제.pdf │ │ ├── 1-3 │ │ │ └── third │ │ │ │ ├── third.sln │ │ │ │ └── third │ │ │ │ ├── dice_game.c │ │ │ │ ├── dice_game.h │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── print_even.c │ │ │ │ ├── print_even.h │ │ │ │ ├── print_even_advanced.c │ │ │ │ ├── print_even_advanced.h │ │ │ │ ├── print_random.c │ │ │ │ ├── print_random.h │ │ │ │ ├── random_dice.c │ │ │ │ ├── random_dice.h │ │ │ │ ├── random_generator.c │ │ │ │ ├── random_generator.h │ │ │ │ ├── third.vcxproj │ │ │ │ └── third.vcxproj.filters │ │ ├── 1_4_homework │ │ │ ├── 1_4_homework.sln │ │ │ └── 1_4_homework │ │ │ │ ├── 1_4_homework.vcxproj │ │ │ │ ├── 1_4_homework.vcxproj.filters │ │ │ │ ├── dice_game.c │ │ │ │ ├── dice_game.h │ │ │ │ ├── main.c │ │ │ │ ├── malloc_test..c │ │ │ │ ├── malloc_test.h │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random_generator.c │ │ │ │ ├── random_generator.h │ │ │ │ ├── second_dice.c │ │ │ │ ├── second_dice.h │ │ │ │ ├── win.c │ │ │ │ └── win.h │ │ └── Vector_homework │ │ │ ├── CMakeLists.txt │ │ │ ├── main.c │ │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ │ └── vector │ │ │ └── entity │ │ │ ├── calculate.c │ │ │ ├── calculate.h │ │ │ ├── vector.c │ │ │ ├── vector.h │ │ │ ├── xyz.c │ │ │ └── xyz.h │ ├── how_to_process_keyboard │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── ui │ │ │ └── console │ │ │ ├── user_keyboard_input.c │ │ │ └── user_keyboard_input.h │ ├── memory_leak_check │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ └── test_main.cpp │ ├── nineth │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── prepare.txt │ ├── second │ │ ├── second.sln │ │ └── second │ │ │ ├── main.c │ │ │ ├── second.vcxproj │ │ │ └── second.vcxproj.filters │ ├── seventh │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ └── entity │ │ │ │ ├── account.c │ │ │ │ ├── account.h │ │ │ │ ├── account_manager.c │ │ │ │ └── account_manager.h │ │ ├── build │ │ │ ├── .cmake │ │ │ │ └── api │ │ │ │ │ └── v1 │ │ │ │ │ ├── query │ │ │ │ │ └── client-vscode │ │ │ │ │ │ └── query.json │ │ │ │ │ └── reply │ │ │ │ │ ├── cache-v2-3d385c6a629634f58b63.json │ │ │ │ │ ├── cmakeFiles-v1-6b3e77a1c832b401eaf2.json │ │ │ │ │ ├── codemodel-v2-19c3fdf33212eb0bca29.json │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ ├── target-c_app-Debug-8c0b8fad41e4d8e2823d.json │ │ │ │ │ └── toolchains-v1-531d75e10f01a26a137f.json │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.22.1 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ └── CMakeCCompilerId.c │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ └── CMakeCXXCompilerId.cpp │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ ├── Makefile.cmake │ │ │ │ ├── Makefile2 │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── c_app.dir │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── compiler_depend.make │ │ │ │ │ ├── compiler_depend.ts │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── cmake.check_cache │ │ │ │ └── progress.marks │ │ │ ├── Makefile │ │ │ ├── c_app │ │ │ ├── cmake_install.cmake │ │ │ └── compile_commands.json │ │ ├── led │ │ │ └── entity │ │ │ │ ├── led.c │ │ │ │ └── led.h │ │ └── main.c │ ├── tenth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_operation_response.c │ │ │ │ │ └── vector_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ ├── test │ │ ├── test1114 │ │ │ ├── 1 │ │ │ │ ├── test1.c │ │ │ │ └── test1.h │ │ │ ├── 2 │ │ │ │ ├── test2.c │ │ │ │ └── test2.h │ │ │ ├── 3 │ │ │ │ ├── test3.c │ │ │ │ └── test3.h │ │ │ ├── 10 │ │ │ │ ├── test10.c │ │ │ │ └── test10.h │ │ │ ├── 13 │ │ │ │ ├── test13.c │ │ │ │ └── test13.h │ │ │ ├── 14 │ │ │ │ ├── test14.c │ │ │ │ └── test14.h │ │ │ ├── 15 │ │ │ │ ├── test15.c │ │ │ │ └── test15.h │ │ │ ├── CMakeLists.txt │ │ │ ├── main │ │ │ └── main.c │ │ ├── test_function_control │ │ │ ├── 1 │ │ │ │ ├── function_one.c │ │ │ │ └── function_one.h │ │ │ ├── 2 │ │ │ │ ├── function_two.c │ │ │ │ └── function_two.h │ │ │ ├── 3 │ │ │ │ ├── function_three.c │ │ │ │ └── function_three.h │ │ │ ├── 4 │ │ │ │ ├── function_four.c │ │ │ │ └── function_four.h │ │ │ ├── 5 │ │ │ │ ├── function_five.c │ │ │ │ └── function_five.h │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ └── test_grammar │ │ │ ├── 8 │ │ │ ├── grammar_eight.c │ │ │ └── grammar_eight.h │ │ │ ├── 9 │ │ │ ├── grammar_nine.c │ │ │ └── grammar_nine.h │ │ │ ├── 10 │ │ │ ├── grammar_ten.c │ │ │ └── grammar_ten.h │ │ │ ├── 11 │ │ │ ├── grammar_elv.c │ │ │ └── grammar_elv.h │ │ │ ├── CMakeLists.txt │ │ │ ├── main.c │ │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── third │ │ ├── third.sln │ │ └── third │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── print_even.c │ │ │ ├── print_even.h │ │ │ ├── print_even_advanced.c │ │ │ ├── print_even_advanced.h │ │ │ ├── print_random.c │ │ │ ├── print_random.h │ │ │ ├── random_dice.c │ │ │ ├── random_dice.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── third.vcxproj │ │ │ └── third.vcxproj.filters │ └── thirteenth │ │ ├── CMakeLists.txt │ │ ├── created_file │ │ ├── format_test.txt │ │ └── 이거만들래.txt │ │ ├── file_io │ │ ├── how_to_make_file.c │ │ ├── how_to_make_file.h │ │ ├── how_to_read_content.c │ │ ├── how_to_read_content.h │ │ ├── how_to_write_content.c │ │ └── how_to_write_content.h │ │ ├── format_test │ │ ├── form_test.c │ │ ├── form_test.h │ │ ├── make_file_from_format.c │ │ ├── make_file_from_format.h │ │ ├── make_format_from_file.c │ │ └── make_format_from_file.h │ │ └── main.c ├── junghwancho │ ├── class │ │ ├── board │ │ │ ├── CMakeLists.txt │ │ │ ├── board │ │ │ │ ├── adapter │ │ │ │ │ ├── input │ │ │ │ │ │ ├── board_api.h │ │ │ │ │ │ ├── board_api_table.c │ │ │ │ │ │ ├── board_api_table.h │ │ │ │ │ │ ├── board_api_table_mapper.h │ │ │ │ │ │ ├── handler │ │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ │ ├── board_api_list_handler.c │ │ │ │ │ │ │ │ └── board_api_list_handler.h │ │ │ │ │ │ │ ├── modify │ │ │ │ │ │ │ │ ├── board_api_modify_handler.c │ │ │ │ │ │ │ │ └── board_api_modify_handler.h │ │ │ │ │ │ │ ├── read │ │ │ │ │ │ │ │ ├── board_api_read_handler.c │ │ │ │ │ │ │ │ └── board_api_read_handler.h │ │ │ │ │ │ │ ├── register │ │ │ │ │ │ │ │ ├── board_api_register_handler.c │ │ │ │ │ │ │ │ └── board_api_register_handler.h │ │ │ │ │ │ │ └── remove │ │ │ │ │ │ │ │ ├── board_api_remove_handler.c │ │ │ │ │ │ │ │ └── board_api_remove_handler.h │ │ │ │ │ │ ├── request_form │ │ │ │ │ │ │ ├── board_api_create_request_form.c │ │ │ │ │ │ │ └── board_api_create_request_form.h │ │ │ │ │ │ └── response_form │ │ │ │ │ │ │ └── board_list_response.h │ │ │ │ │ └── output │ │ │ │ │ │ └── file │ │ │ │ │ │ ├── board_file_adapter.h │ │ │ │ │ │ ├── board_file_adapter_table.c │ │ │ │ │ │ ├── board_file_adapter_table.h │ │ │ │ │ │ ├── board_file_adapter_table_mapper.h │ │ │ │ │ │ ├── handler │ │ │ │ │ │ ├── delete_by_id │ │ │ │ │ │ │ ├── board_file_adapter_delete_by_id_handler.c │ │ │ │ │ │ │ └── board_file_adapter_delete_by_id_handler.h │ │ │ │ │ │ ├── find_all │ │ │ │ │ │ │ ├── board_file_adapter_find_all_handler.c │ │ │ │ │ │ │ └── board_file_adapter_find_all_handler.h │ │ │ │ │ │ ├── find_by_id │ │ │ │ │ │ │ ├── board_file_adapter_find_by_id_handler.c │ │ │ │ │ │ │ └── board_file_adapter_find_by_id_handler.h │ │ │ │ │ │ └── save │ │ │ │ │ │ │ ├── board_file_adapter_save_handler.c │ │ │ │ │ │ │ └── board_file_adapter_save_handler.h │ │ │ │ │ │ └── repository │ │ │ │ │ │ ├── in_memory_board.c │ │ │ │ │ │ ├── in_memory_board.h │ │ │ │ │ │ ├── in_memory_board_manager.c │ │ │ │ │ │ └── in_memory_board_manager.h │ │ │ │ ├── application │ │ │ │ │ └── services │ │ │ │ │ │ ├── board_service.h │ │ │ │ │ │ ├── board_service_table.c │ │ │ │ │ │ ├── board_service_table.h │ │ │ │ │ │ ├── board_service_table_mapper.h │ │ │ │ │ │ ├── handler │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── board_service_create_handler.c │ │ │ │ │ │ │ └── board_service_create_handler.h │ │ │ │ │ │ ├── get_list │ │ │ │ │ │ │ ├── board_service_get_list_handler.c │ │ │ │ │ │ │ └── board_service_get_list_handler.h │ │ │ │ │ │ ├── get_one │ │ │ │ │ │ │ ├── board_service_get_one_handler.c │ │ │ │ │ │ │ └── board_service_get_one_handler.h │ │ │ │ │ │ ├── modify │ │ │ │ │ │ │ ├── board_service_modify_handler.c │ │ │ │ │ │ │ └── board_service_modify_handler.h │ │ │ │ │ │ └── remove │ │ │ │ │ │ │ ├── board_service_remove_handler.c │ │ │ │ │ │ │ └── board_service_remove_handler.h │ │ │ │ │ │ ├── request │ │ │ │ │ │ ├── board_service_create_request.c │ │ │ │ │ │ └── board_service_create_request.h │ │ │ │ │ │ └── response │ │ │ │ │ │ ├── board_service_create_response.c │ │ │ │ │ │ ├── board_service_create_response.h │ │ │ │ │ │ └── list │ │ │ │ │ │ ├── board_service_list_response.c │ │ │ │ │ │ └── board_service_list_response.h │ │ │ │ └── domain │ │ │ │ │ └── model │ │ │ │ │ ├── board_model.c │ │ │ │ │ ├── board_model.h │ │ │ │ │ ├── board_model_content.c │ │ │ │ │ ├── board_model_content.h │ │ │ │ │ ├── board_model_id.c │ │ │ │ │ ├── board_model_id.h │ │ │ │ │ ├── board_model_info.c │ │ │ │ │ ├── board_model_info.h │ │ │ │ │ ├── board_model_title.c │ │ │ │ │ ├── board_model_title.h │ │ │ │ │ ├── board_model_writer.c │ │ │ │ │ └── board_model_writer.h │ │ │ ├── build_script.sh │ │ │ ├── config │ │ │ │ └── every_config.h │ │ │ ├── database │ │ │ │ └── README.md │ │ │ ├── file │ │ │ │ ├── file.c │ │ │ │ ├── file.h │ │ │ │ └── raw_io │ │ │ │ │ ├── file_io.c │ │ │ │ │ └── file_io.h │ │ │ ├── in_memory │ │ │ │ └── board │ │ │ │ │ ├── in_memory_board_manager.c │ │ │ │ │ └── in_memory_board_manager.h │ │ │ ├── main.c │ │ │ ├── tests │ │ │ │ ├── board │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── adapter_input_modify_test.cpp │ │ │ │ │ │ │ └── adapter_input_test.cpp │ │ │ │ │ │ └── output │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ └── handler │ │ │ │ │ │ │ ├── adapter_output_file_handler_test.cpp │ │ │ │ │ │ │ └── save │ │ │ │ │ │ │ └── adapter_output_file_save_handler_test.cpp │ │ │ │ │ └── domain │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── domain_model_board_info_test.cpp │ │ │ │ │ │ ├── domain_model_board_test.cpp │ │ │ │ │ │ ├── domain_model_content_test.cpp │ │ │ │ │ │ ├── domain_model_id_test.cpp │ │ │ │ │ │ ├── domain_model_title_test.cpp │ │ │ │ │ │ └── domain_model_writer_test.cpp │ │ │ │ ├── test_main.cpp │ │ │ │ └── ui │ │ │ │ │ └── console │ │ │ │ │ └── service │ │ │ │ │ └── ui_console_service_test.cpp │ │ │ ├── ui │ │ │ │ └── console │ │ │ │ │ ├── service │ │ │ │ │ ├── handler │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── ui_service_create_handler.c │ │ │ │ │ │ │ └── ui_service_create_handler.h │ │ │ │ │ │ ├── exit │ │ │ │ │ │ │ ├── ui_service_exit_handler.c │ │ │ │ │ │ │ └── ui_service_exit_handler.h │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── ui_service_list_handler.c │ │ │ │ │ │ │ └── ui_service_list_handler.h │ │ │ │ │ │ ├── modify │ │ │ │ │ │ │ ├── ui_service_modify_handler.c │ │ │ │ │ │ │ └── ui_service_modify_handler.h │ │ │ │ │ │ ├── read │ │ │ │ │ │ │ ├── ui_service_read_handler.c │ │ │ │ │ │ │ └── ui_service_read_handler.h │ │ │ │ │ │ └── remove │ │ │ │ │ │ │ ├── ui_service_remove_handler.c │ │ │ │ │ │ │ └── ui_service_remove_handler.h │ │ │ │ │ ├── ui_service.h │ │ │ │ │ ├── ui_service_table.c │ │ │ │ │ ├── ui_service_table.h │ │ │ │ │ └── ui_service_table_mapper.h │ │ │ │ │ ├── user_keyboard │ │ │ │ │ ├── user_keyboard_input.c │ │ │ │ │ └── user_keyboard_input.h │ │ │ │ │ └── window │ │ │ │ │ ├── console_window.c │ │ │ │ │ └── console_window.h │ │ │ └── utility │ │ │ │ ├── trim.c │ │ │ │ └── trim.h │ │ ├── eighth_day │ │ │ ├── .vscode │ │ │ │ └── tasks.json │ │ │ ├── CMakeLists.txt │ │ │ ├── dice │ │ │ │ └── entity │ │ │ │ │ ├── dice.c │ │ │ │ │ └── dice.h │ │ │ ├── main.c │ │ │ ├── player │ │ │ │ └── entity │ │ │ │ │ ├── player.c │ │ │ │ │ └── player.h │ │ │ └── utility │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── random.c │ │ │ │ └── random.h │ │ ├── fifth_day │ │ │ ├── fifth_day.sln │ │ │ └── fifth_day │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── dice..c │ │ │ │ ├── dice.h │ │ │ │ ├── fifth_day.vcxproj │ │ │ │ ├── fifth_day.vcxproj.filters │ │ │ │ ├── game.c │ │ │ │ ├── game.h │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random.c │ │ │ │ └── random.h │ │ ├── first_day │ │ │ ├── first_day.sln │ │ │ └── first_day │ │ │ │ ├── first.c │ │ │ │ ├── first_day.vcxproj │ │ │ │ ├── first_day.vcxproj.filters │ │ │ │ ├── second.c │ │ │ │ └── second.h │ │ ├── fourth_day │ │ │ ├── fourth_day.sln │ │ │ └── fourth_day │ │ │ │ ├── dice_game.c │ │ │ │ ├── dice_game.h │ │ │ │ ├── fourth_day.vcxproj │ │ │ │ ├── fourth_day.vcxproj.filters │ │ │ │ ├── main.c │ │ │ │ ├── malloc_test.c │ │ │ │ ├── malloc_test.h │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random_generator.c │ │ │ │ ├── random_generator.h │ │ │ │ ├── win.c │ │ │ │ └── win.h │ │ ├── gtest_example │ │ │ ├── CMakeLists.txt │ │ │ ├── build_script.sh │ │ │ ├── main.c │ │ │ ├── sample │ │ │ │ ├── sample.c │ │ │ │ └── sample.h │ │ │ └── tests │ │ │ │ ├── how_to_use │ │ │ │ ├── how_to_tdd.cpp │ │ │ │ └── wanna_verify_some_functions.cpp │ │ │ │ └── test_main.cpp │ │ ├── how_to_process_keyboard_input │ │ │ ├── CMakeLists.txt │ │ │ ├── main.c │ │ │ └── ui │ │ │ │ └── console │ │ │ │ ├── user_keyboard_input.c │ │ │ │ └── user_keyboard_input.h │ │ ├── memory_leak_check │ │ │ ├── CMakeLists.txt │ │ │ ├── build_script.sh │ │ │ ├── main.c │ │ │ ├── sample │ │ │ │ ├── sample.c │ │ │ │ └── sample.h │ │ │ └── tests │ │ │ │ └── test_main.cpp │ │ ├── ninth_day │ │ │ ├── CMakeLists.txt │ │ │ ├── main │ │ │ └── main.c │ │ ├── second_day │ │ │ ├── second_day.sln │ │ │ └── second_day │ │ │ │ ├── main.c │ │ │ │ ├── second_day.vcxproj │ │ │ │ └── second_day.vcxproj.filters │ │ ├── seventh_day │ │ │ ├── .vscode │ │ │ │ └── tasks.json │ │ │ ├── CMakeLists.txt │ │ │ ├── account │ │ │ │ └── entity │ │ │ │ │ ├── account.c │ │ │ │ │ ├── account.h │ │ │ │ │ ├── account_manager.c │ │ │ │ │ └── account_manager.h │ │ │ ├── led │ │ │ │ └── entity │ │ │ │ │ ├── led.c │ │ │ │ │ └── led.h │ │ │ └── main.c │ │ ├── tenth_day │ │ │ ├── CMakeLists.txt │ │ │ ├── main.c │ │ │ ├── utility │ │ │ │ ├── random.c │ │ │ │ └── random.h │ │ │ └── vector │ │ │ │ ├── adapter │ │ │ │ ├── in │ │ │ │ │ └── api │ │ │ │ │ │ ├── random_operation │ │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ │ ├── request │ │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ │ ├── response │ │ │ │ │ │ ├── vector_operation_response.h │ │ │ │ │ │ └── vector_operaton_response.c │ │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ │ └── out │ │ │ │ │ └── in_memory │ │ │ │ │ ├── data │ │ │ │ │ ├── vector.c │ │ │ │ │ └── vector.h │ │ │ │ │ ├── store │ │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ │ ├── application │ │ │ │ └── services │ │ │ │ │ ├── add │ │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ │ ├── sub │ │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ │ ├── vector_service_command.h │ │ │ │ │ ├── vector_service_command_table.c │ │ │ │ │ ├── vector_service_command_table.h │ │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ │ └── domain │ │ │ │ └── model │ │ │ │ ├── vector_model.c │ │ │ │ └── vector_model.h │ │ ├── test │ │ │ └── CMakeLists.txt │ │ ├── thirteenth │ │ │ ├── CMakeLists.txt │ │ │ ├── created_file │ │ │ │ ├── format_test.txt │ │ │ │ └── 이거만들래.txt │ │ │ ├── file_io │ │ │ │ ├── how_to_make_file.c │ │ │ │ ├── how_to_make_file.h │ │ │ │ ├── how_to_read_content.c │ │ │ │ ├── how_to_read_content.h │ │ │ │ ├── how_to_write_content.c │ │ │ │ └── how_to_write_content.h │ │ │ ├── format_test │ │ │ │ ├── form_test.c │ │ │ │ ├── form_test.h │ │ │ │ ├── make_file_from_format.c │ │ │ │ ├── make_file_from_format.h │ │ │ │ ├── make_format_from_file.c │ │ │ │ └── make_format_from_file.h │ │ │ └── main.c │ │ └── thrid_day │ │ │ ├── thrid_day.sln │ │ │ └── thrid_day │ │ │ ├── dice.game.c │ │ │ ├── dice_fight.c │ │ │ ├── dice_fight.h │ │ │ ├── dice_game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── player_even.c │ │ │ ├── print.random.c │ │ │ ├── print_even.h │ │ │ ├── print_even_advanced.c │ │ │ ├── print_even_advanced.h │ │ │ ├── print_random.h │ │ │ ├── random_generator.h │ │ │ ├── thrid_day.vcxproj │ │ │ └── thrid_day.vcxproj.filters │ ├── homework │ │ ├── 3rd day │ │ │ ├── 3rd day homework │ │ │ │ ├── 3rd day homework.sln │ │ │ │ └── 3rd day homework │ │ │ │ │ ├── 3rd day homework.vcxproj │ │ │ │ │ ├── 3rd day homework.vcxproj.filters │ │ │ │ │ ├── dice_game.c │ │ │ │ │ ├── dice_game.h │ │ │ │ │ ├── main.c │ │ │ │ │ ├── player.c │ │ │ │ │ ├── player.h │ │ │ │ │ ├── random_generator.c │ │ │ │ │ └── random_generator.h │ │ │ └── 3rd day │ │ │ │ ├── 3rd day.sln │ │ │ │ └── 3rd day │ │ │ │ ├── 3rd day.vcxproj │ │ │ │ ├── 3rd day.vcxproj.filters │ │ │ │ ├── dice_fight.c │ │ │ │ ├── dice_fight.h │ │ │ │ ├── dice_fight_test.c │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random_generator.h │ │ │ │ └── random_gnerator.c │ │ ├── 4th day │ │ │ ├── 4th day.sln │ │ │ └── 4th day │ │ │ │ ├── 4th day.vcxproj │ │ │ │ ├── 4th day.vcxproj.filters │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ ├── first_week_work │ │ │ ├── first_week_work.sln │ │ │ └── first_week_work │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── commonc │ │ │ │ ├── commoon.c │ │ │ │ ├── dice.c │ │ │ │ ├── dice.h │ │ │ │ ├── first_week_work.vcxproj │ │ │ │ ├── first_week_work.vcxproj.filters │ │ │ │ ├── game.c │ │ │ │ ├── game.h │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random.c │ │ │ │ └── random.h │ │ ├── first_work │ │ │ └── Assembly 분석해보기.jpg │ │ ├── second_week_work │ │ │ ├── CMakeLists.txt │ │ │ ├── main │ │ │ ├── main.c │ │ │ └── vector │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ └── second_work │ │ │ ├── second_work.sln │ │ │ └── second_work │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── second_work.vcxproj │ │ │ └── second_work.vcxproj.filters │ ├── practice │ │ ├── first │ │ │ ├── CMakeLists.txt │ │ │ ├── float_random_generate.c │ │ │ ├── float_random_generate.h │ │ │ ├── int_random_generate.c │ │ │ ├── int_random_generate.h │ │ │ └── main.c │ │ ├── google_test │ │ │ ├── CMakeLists.txt │ │ │ ├── build_script.sh │ │ │ ├── main.c │ │ │ ├── simple │ │ │ │ ├── add.c │ │ │ │ ├── add.h │ │ │ │ ├── sub.c │ │ │ │ └── sub.h │ │ │ └── tests │ │ │ │ ├── add_test.cpp │ │ │ │ ├── sub_test.cpp │ │ │ │ └── test_main.cpp │ │ ├── prob1 │ │ │ ├── 1 │ │ │ │ ├── func_var_first.c │ │ │ │ └── func_var_first.h │ │ │ ├── 2 │ │ │ │ ├── func_var_second.c │ │ │ │ └── func_var_second.h │ │ │ ├── 3 │ │ │ │ ├── func_var_third.c │ │ │ │ └── func_var_third.h │ │ │ ├── 4 │ │ │ │ ├── func_var_fourth.c │ │ │ │ └── func_var_fourth.h │ │ │ ├── 13 │ │ │ │ ├── func_var_thirteen.c │ │ │ │ └── func_var_thirteen.h │ │ │ ├── 14 │ │ │ │ ├── func_var_fourteen.c │ │ │ │ └── func_var_fourteen.h │ │ │ ├── 15 │ │ │ │ ├── func_var_fifteen.c │ │ │ │ └── func_var_fifteen.h │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ ├── prob2 │ │ │ ├── 2 │ │ │ │ ├── random_generate.c │ │ │ │ ├── random_generate.h │ │ │ │ ├── random_number_play.c │ │ │ │ └── random_number_play.h │ │ │ ├── 3 │ │ │ │ ├── common.c │ │ │ │ └── common.h │ │ │ ├── 8 │ │ │ │ ├── random_size_dynamic_array.c │ │ │ │ └── random_size_dynamic_array.h │ │ │ ├── 11 │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ ├── prob2_2 │ │ │ ├── 2 │ │ │ │ ├── random_number_generator.c │ │ │ │ └── random_number_generator.h │ │ │ ├── 3 │ │ │ │ ├── check_odd.c │ │ │ │ └── check_odd.h │ │ │ ├── 5 │ │ │ │ ├── int_test.c │ │ │ │ └── int_test.h │ │ │ ├── 6 │ │ │ │ ├── int_sum.c │ │ │ │ └── int_sum.h │ │ │ ├── 8 │ │ │ │ ├── random_size_dynamic_array.c │ │ │ │ └── random_size_dynamic_array.h │ │ │ ├── 9 │ │ │ │ ├── grammer_prob_ninth.c │ │ │ │ └── grammer_prob_ninth.h │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ └── prob2_3 │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ └── prepare.txt ├── junyeonkim │ ├── day3_homework │ │ ├── day3_homework.sln │ │ └── day3_homework │ │ │ ├── day3_homework.vcxproj │ │ │ ├── day3_homework.vcxproj.filters │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── main.c │ │ │ ├── player1.c │ │ │ ├── player1.h │ │ │ ├── player2.c │ │ │ ├── player2.h │ │ │ ├── print_random.c │ │ │ ├── print_random.h │ │ │ ├── random_generator.c │ │ │ └── random_generator.h │ ├── fifth │ │ ├── fifth.sln │ │ └── fifth │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── fifth.vcxproj │ │ │ ├── fifth.vcxproj.filters │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── first │ │ ├── first.sln │ │ └── first │ │ │ ├── first.c │ │ │ ├── first.vcxproj │ │ │ ├── first.vcxproj.filters │ │ │ ├── fourth.c │ │ │ ├── fourth.h │ │ │ ├── second.c │ │ │ ├── second.h │ │ │ ├── third.c │ │ │ └── third.h │ ├── homework │ │ └── for_assembly_function-main.pdf │ ├── prepare.txt │ ├── second │ │ ├── second.sln │ │ └── second │ │ │ ├── main.c │ │ │ ├── second.vcxproj │ │ │ └── second.vcxproj.filters │ └── third │ │ ├── third.sln │ │ └── third │ │ ├── dice_game.c │ │ ├── dice_game.h │ │ ├── main.c │ │ ├── player.c │ │ ├── player.h │ │ ├── print_even.c │ │ ├── print_even.h │ │ ├── print_even_advanced.c │ │ ├── print_even_advanced.h │ │ ├── print_random.c │ │ ├── print_random.h │ │ ├── random_generator.c │ │ ├── random_generator.h │ │ ├── third.vcxproj │ │ └── third.vcxproj.filters ├── lecture │ ├── asm_ptr │ │ ├── .vscode │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── main │ │ └── main.c │ ├── board │ │ ├── CMakeLists.txt │ │ ├── board │ │ │ ├── adapter │ │ │ │ ├── input │ │ │ │ │ ├── board_api.h │ │ │ │ │ ├── board_api_table.c │ │ │ │ │ ├── board_api_table.h │ │ │ │ │ ├── board_api_table_mapper.h │ │ │ │ │ ├── handler │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── board_api_list_handler.c │ │ │ │ │ │ │ └── board_api_list_handler.h │ │ │ │ │ │ ├── modify │ │ │ │ │ │ │ ├── board_api_modify_handler.c │ │ │ │ │ │ │ └── board_api_modify_handler.h │ │ │ │ │ │ ├── read │ │ │ │ │ │ │ ├── board_api_read_handler.c │ │ │ │ │ │ │ └── board_api_read_handler.h │ │ │ │ │ │ ├── register │ │ │ │ │ │ │ ├── board_api_register_handler.c │ │ │ │ │ │ │ └── board_api_register_handler.h │ │ │ │ │ │ └── remove │ │ │ │ │ │ │ ├── board_api_remove_handler.c │ │ │ │ │ │ │ └── board_api_remove_handler.h │ │ │ │ │ ├── request_form │ │ │ │ │ │ ├── board_api_create_request_form.c │ │ │ │ │ │ └── board_api_create_request_form.h │ │ │ │ │ └── response_form │ │ │ │ │ │ └── board_list_response.h │ │ │ │ └── output │ │ │ │ │ └── file │ │ │ │ │ ├── board_file_adapter.h │ │ │ │ │ ├── board_file_adapter_table.c │ │ │ │ │ ├── board_file_adapter_table.h │ │ │ │ │ ├── board_file_adapter_table_mapper.h │ │ │ │ │ ├── handler │ │ │ │ │ ├── delete_by_id │ │ │ │ │ │ ├── board_file_adapter_delete_by_id_handler.c │ │ │ │ │ │ └── board_file_adapter_delete_by_id_handler.h │ │ │ │ │ ├── find_all │ │ │ │ │ │ ├── board_file_adapter_find_all_handler.c │ │ │ │ │ │ └── board_file_adapter_find_all_handler.h │ │ │ │ │ ├── find_by_id │ │ │ │ │ │ ├── board_file_adapter_find_by_id_handler.c │ │ │ │ │ │ └── board_file_adapter_find_by_id_handler.h │ │ │ │ │ └── save │ │ │ │ │ │ ├── board_file_adapter_save_handler.c │ │ │ │ │ │ └── board_file_adapter_save_handler.h │ │ │ │ │ └── repository │ │ │ │ │ ├── in_memory_board.c │ │ │ │ │ ├── in_memory_board.h │ │ │ │ │ ├── in_memory_board_manager.c │ │ │ │ │ └── in_memory_board_manager.h │ │ │ ├── application │ │ │ │ └── services │ │ │ │ │ ├── board_service.h │ │ │ │ │ ├── board_service_table.c │ │ │ │ │ ├── board_service_table.h │ │ │ │ │ ├── board_service_table_mapper.h │ │ │ │ │ ├── handler │ │ │ │ │ ├── create │ │ │ │ │ │ ├── board_service_create_handler.c │ │ │ │ │ │ └── board_service_create_handler.h │ │ │ │ │ ├── get_list │ │ │ │ │ │ ├── board_service_get_list_handler.c │ │ │ │ │ │ └── board_service_get_list_handler.h │ │ │ │ │ ├── get_one │ │ │ │ │ │ ├── board_service_get_one_handler.c │ │ │ │ │ │ └── board_service_get_one_handler.h │ │ │ │ │ ├── modify │ │ │ │ │ │ ├── board_service_modify_handler.c │ │ │ │ │ │ └── board_service_modify_handler.h │ │ │ │ │ └── remove │ │ │ │ │ │ ├── board_service_remove_handler.c │ │ │ │ │ │ └── board_service_remove_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── board_service_create_request.c │ │ │ │ │ └── board_service_create_request.h │ │ │ │ │ └── response │ │ │ │ │ ├── board_service_create_response.c │ │ │ │ │ ├── board_service_create_response.h │ │ │ │ │ └── list │ │ │ │ │ ├── board_service_list_response.c │ │ │ │ │ └── board_service_list_response.h │ │ │ └── domain │ │ │ │ └── model │ │ │ │ ├── board_model.c │ │ │ │ ├── board_model.h │ │ │ │ ├── board_model_content.c │ │ │ │ ├── board_model_content.h │ │ │ │ ├── board_model_id.c │ │ │ │ ├── board_model_id.h │ │ │ │ ├── board_model_info.c │ │ │ │ ├── board_model_info.h │ │ │ │ ├── board_model_title.c │ │ │ │ ├── board_model_title.h │ │ │ │ ├── board_model_writer.c │ │ │ │ └── board_model_writer.h │ │ ├── build_script.sh │ │ ├── config │ │ │ └── every_config.h │ │ ├── database │ │ │ └── README.md │ │ ├── file │ │ │ ├── file.c │ │ │ ├── file.h │ │ │ └── raw_io │ │ │ │ ├── file_io.c │ │ │ │ └── file_io.h │ │ ├── in_memory │ │ │ └── board │ │ │ │ ├── in_memory_board_manager.c │ │ │ │ └── in_memory_board_manager.h │ │ ├── main.c │ │ ├── tests │ │ │ ├── board │ │ │ │ ├── adapter │ │ │ │ │ ├── input │ │ │ │ │ │ ├── adapter_input_modify_test.cpp │ │ │ │ │ │ └── adapter_input_test.cpp │ │ │ │ │ └── output │ │ │ │ │ │ └── file │ │ │ │ │ │ └── handler │ │ │ │ │ │ ├── adapter_output_file_handler_test.cpp │ │ │ │ │ │ └── save │ │ │ │ │ │ └── adapter_output_file_save_handler_test.cpp │ │ │ │ └── domain │ │ │ │ │ └── model │ │ │ │ │ ├── domain_model_board_info_test.cpp │ │ │ │ │ ├── domain_model_board_test.cpp │ │ │ │ │ ├── domain_model_content_test.cpp │ │ │ │ │ ├── domain_model_id_test.cpp │ │ │ │ │ ├── domain_model_title_test.cpp │ │ │ │ │ └── domain_model_writer_test.cpp │ │ │ ├── test_main.cpp │ │ │ └── ui │ │ │ │ └── console │ │ │ │ └── service │ │ │ │ └── ui_console_service_test.cpp │ │ ├── ui │ │ │ └── console │ │ │ │ ├── service │ │ │ │ ├── handler │ │ │ │ │ ├── create │ │ │ │ │ │ ├── ui_service_create_handler.c │ │ │ │ │ │ └── ui_service_create_handler.h │ │ │ │ │ ├── exit │ │ │ │ │ │ ├── ui_service_exit_handler.c │ │ │ │ │ │ └── ui_service_exit_handler.h │ │ │ │ │ ├── list │ │ │ │ │ │ ├── ui_service_list_handler.c │ │ │ │ │ │ └── ui_service_list_handler.h │ │ │ │ │ ├── modify │ │ │ │ │ │ ├── ui_service_modify_handler.c │ │ │ │ │ │ └── ui_service_modify_handler.h │ │ │ │ │ ├── read │ │ │ │ │ │ ├── ui_service_read_handler.c │ │ │ │ │ │ └── ui_service_read_handler.h │ │ │ │ │ └── remove │ │ │ │ │ │ ├── ui_service_remove_handler.c │ │ │ │ │ │ └── ui_service_remove_handler.h │ │ │ │ ├── ui_service.h │ │ │ │ ├── ui_service_table.c │ │ │ │ ├── ui_service_table.h │ │ │ │ └── ui_service_table_mapper.h │ │ │ │ ├── user_keyboard │ │ │ │ ├── user_keyboard_input.c │ │ │ │ └── user_keyboard_input.h │ │ │ │ └── window │ │ │ │ ├── console_window.c │ │ │ │ └── console_window.h │ │ └── utility │ │ │ ├── trim.c │ │ │ └── trim.h │ ├── eighth │ │ ├── CMakeLists.txt │ │ ├── dice │ │ │ └── entity │ │ │ │ ├── dice.c │ │ │ │ └── dice.h │ │ ├── main.c │ │ ├── player │ │ │ └── entity │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ └── utility │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── exception_test │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── exception.c │ │ │ └── exception.h │ │ ├── tests │ │ │ └── test_main.cpp │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── fifth │ │ ├── fifth.sln │ │ └── fifth │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── fifth.vcxproj │ │ │ ├── fifth.vcxproj.filters │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── first │ │ ├── first.sln │ │ └── first │ │ │ ├── first.c │ │ │ ├── first.vcxproj │ │ │ ├── first.vcxproj.filters │ │ │ ├── fourth.c │ │ │ ├── fourth.h │ │ │ ├── second.c │ │ │ ├── second.h │ │ │ ├── third.c │ │ │ └── third.h │ ├── fourth │ │ ├── fourth.sln │ │ └── fourth │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── fourth.vcxproj │ │ │ ├── fourth.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── malloc_test.c │ │ │ ├── malloc_test.h │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── win.c │ │ │ └── win.h │ ├── grammar-prob │ │ ├── 1 │ │ │ ├── grammar_prob_first.c │ │ │ └── grammar_prob_first.h │ │ ├── 2 │ │ │ ├── grammar_prob_second.c │ │ │ └── grammar_prob_second.h │ │ ├── 3 │ │ │ ├── grammar_prob_third.c │ │ │ └── grammar_prob_third.h │ │ ├── 4 │ │ │ ├── grammar_prob_fourth.c │ │ │ └── grammar_prob_fourth.h │ │ ├── 5 │ │ │ ├── grammar_prob_fifth.c │ │ │ └── grammar_prob_fifth.h │ │ ├── 6 │ │ │ ├── grammar_prob_sixth.c │ │ │ └── grammar_prob_sixth.h │ │ ├── 7 │ │ │ ├── grammar_prob_seventh.c │ │ │ └── grammar_prob_seventh.h │ │ ├── 8 │ │ │ ├── grammar_prob_eighth.c │ │ │ └── grammar_prob_eighth.h │ │ ├── 9 │ │ │ ├── grammar_prob_ninth.c │ │ │ └── grammar_prob_ninth.h │ │ ├── 10 │ │ │ ├── grammar_prob_tenth.c │ │ │ └── grammar_prob_tenth.h │ │ ├── 11 │ │ │ ├── grammar_prob_eleventh.c │ │ │ └── grammar_prob_eleventh.h │ │ ├── CMakeLists.txt │ │ ├── extra │ │ │ ├── i_wanna_return_float_random.c │ │ │ └── i_wanna_return_float_random.h │ │ ├── main.c │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── gtest_example │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ ├── how_to_use │ │ │ ├── how_to_tdd.cpp │ │ │ └── wanna_verify_some_functions.cpp │ │ │ └── test_main.cpp │ ├── gtest_practice │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── simple │ │ │ ├── add.c │ │ │ ├── add.h │ │ │ ├── sub.c │ │ │ └── sub.h │ │ └── tests │ │ │ ├── add_test.cpp │ │ │ ├── sub_test.cpp │ │ │ └── test_main.cpp │ ├── homework │ │ └── 2 │ │ │ └── stack어셈블리분석.pdf │ ├── how_to_process_keyboard_input │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── ui │ │ │ └── console │ │ │ ├── user_keyboard_input.c │ │ │ └── user_keyboard_input.h │ ├── memory_leak_check │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ └── test_main.cpp │ ├── nineth │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── prepare.txt │ ├── prob1 │ │ ├── 1 │ │ │ ├── func_var_first.c │ │ │ └── func_var_first.h │ │ ├── 2 │ │ │ ├── func_var_second.c │ │ │ └── func_var_second.h │ │ ├── 3 │ │ │ ├── func_var_third.c │ │ │ └── func_var_third.h │ │ ├── 4 │ │ │ ├── func_var_fourth.c │ │ │ └── func_var_fourth.h │ │ ├── 5 │ │ │ ├── func_var_fifth.c │ │ │ └── func_var_fifth.h │ │ ├── 6 │ │ │ ├── func_var_sixth.c │ │ │ └── func_var_sixth.h │ │ ├── 9 │ │ │ ├── func_var_ninth.c │ │ │ └── func_var_ninth.h │ │ ├── 10 │ │ │ ├── func_var_tenth.c │ │ │ └── func_var_tenth.h │ │ ├── 11 │ │ │ ├── func_var_eleventh.c │ │ │ └── func_var_eleventh.h │ │ ├── 13 │ │ │ ├── func_var_thirteenth.c │ │ │ └── func_var_thirteenth.h │ │ ├── 14 │ │ │ ├── func_var_fourteenth.c │ │ │ └── func_var_fourteenth.h │ │ ├── 15 │ │ │ ├── func_var_fifteenth.c │ │ │ └── func_var_fifteenth.h │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── second │ │ ├── second.sln │ │ └── second │ │ │ ├── main.c │ │ │ ├── second.vcxproj │ │ │ └── second.vcxproj.filters │ ├── seventh │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ └── entity │ │ │ │ ├── account.c │ │ │ │ ├── account.h │ │ │ │ ├── account_manager.c │ │ │ │ └── account_manager.h │ │ ├── build │ │ │ ├── .cmake │ │ │ │ └── api │ │ │ │ │ └── v1 │ │ │ │ │ ├── query │ │ │ │ │ └── client-vscode │ │ │ │ │ │ └── query.json │ │ │ │ │ └── reply │ │ │ │ │ ├── cache-v2-052c5877b26c30461811.json │ │ │ │ │ ├── cmakeFiles-v1-b08a1a1166a826132b2f.json │ │ │ │ │ ├── codemodel-v2-e4eaa229253f8d369014.json │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ ├── index-2023-11-08T00-54-51-0948.json │ │ │ │ │ └── toolchains-v1-7b3f28aa77dde7e72327.json │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.22.1 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ └── CMakeCCompilerId.c │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ └── CMakeCXXCompilerId.cpp │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ ├── Makefile.cmake │ │ │ │ ├── Makefile2 │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── cmake.check_cache │ │ │ │ └── progress.marks │ │ │ ├── Makefile │ │ │ └── cmake_install.cmake │ │ ├── led │ │ │ └── entity │ │ │ │ ├── led.c │ │ │ │ └── led.h │ │ └── main.c │ ├── tenth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_operation_response.c │ │ │ │ │ └── vector_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ ├── test │ │ └── CMakeLists.txt │ ├── third │ │ ├── third.sln │ │ └── third │ │ │ ├── CMakeLists.txt │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── print_even.c │ │ │ ├── print_even.h │ │ │ ├── print_even_advanced.c │ │ │ ├── print_even_advanced.h │ │ │ ├── print_random.c │ │ │ ├── print_random.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── third.vcxproj │ │ │ └── third.vcxproj.filters │ └── thirteenth │ │ ├── CMakeLists.txt │ │ ├── created_file │ │ ├── format_test.txt │ │ └── 이거만들래.txt │ │ ├── file_io │ │ ├── how_to_make_file.c │ │ ├── how_to_make_file.h │ │ ├── how_to_read_content.c │ │ ├── how_to_read_content.h │ │ ├── how_to_write_content.c │ │ └── how_to_write_content.h │ │ ├── format_test │ │ ├── form_test.c │ │ ├── form_test.h │ │ ├── make_file_from_format.c │ │ ├── make_file_from_format.h │ │ ├── make_format_from_file.c │ │ └── make_format_from_file.h │ │ └── main.c ├── sanggunyoun │ ├── 5day │ │ └── 5day_1 │ │ │ ├── 5day_1.sln │ │ │ └── 5day_1 │ │ │ ├── 5day_1.vcxproj │ │ │ ├── 5day_1.vcxproj.filters │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── asm_ptr │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── dice │ │ ├── dice.sln │ │ └── dice │ │ │ ├── dice.vcxproj │ │ │ └── dice.vcxproj.filters │ ├── eleventh │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── exception_test │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── exception.c │ │ │ └── exception.h │ │ ├── tests │ │ │ └── test_main.cpp │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── first │ │ ├── first.sln │ │ └── first │ │ │ ├── First.c │ │ │ ├── first.vcxproj │ │ │ └── first.vcxproj.filters │ ├── fourth │ │ ├── fourth.sln │ │ └── fourth │ │ │ ├── dice_game.h │ │ │ ├── dice_gmae.c │ │ │ ├── fourth.vcxproj │ │ │ ├── fourth.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── malloc_test.c │ │ │ ├── malloc_test.h │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── winner.c │ │ │ └── winner.h │ ├── grammar-prob │ │ ├── 1 │ │ │ ├── grammar_prob_first.c │ │ │ └── grammar_prob_first.h │ │ ├── 2 │ │ │ ├── grammar_prob_second.c │ │ │ └── grammar_prob_second.h │ │ ├── 3 │ │ │ ├── grammar_prob_third.c │ │ │ └── grammar_prob_third.h │ │ ├── 4 │ │ │ ├── grammar_prob_fourth.c │ │ │ └── grammar_prob_fourth.h │ │ ├── 5 │ │ │ ├── grammar_prob_fifth.c │ │ │ └── grammar_prob_fifth.h │ │ ├── 6 │ │ │ ├── grammar_prob_sixth.c │ │ │ └── grammar_prob_sixth.h │ │ ├── 7 │ │ │ ├── grammar_prob_seventh.c │ │ │ └── grammar_prob_seventh.h │ │ ├── 8 │ │ │ ├── grammar_prob_eighth.c │ │ │ └── grammar_prob_eighth.h │ │ ├── 9 │ │ │ ├── grammar_prob_ninth.c │ │ │ └── grammar_prob_ninth.h │ │ ├── 10 │ │ │ ├── grammar_prob_tenth.c │ │ │ └── grammar_prob_tenth.h │ │ ├── 11 │ │ │ ├── grammar_prob_eleventh.c │ │ │ └── grammar_prob_eleventh.h │ │ ├── CMakeLists.txt │ │ ├── extra │ │ │ ├── i_wanna_return_float_random.c │ │ │ └── i_wanna_return_float_random.h │ │ ├── main.c │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── gtest_example │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ ├── how_to_use │ │ │ ├── how_to_tdd.cpp │ │ │ └── wanna_verify_some_functions.cpp │ │ │ └── test_main.cpp │ ├── homework │ │ ├── 2 │ │ │ └── 윤상근 과제1.pdf │ │ ├── 4 │ │ │ └── homework_4 │ │ │ │ ├── homework_4.sln │ │ │ │ └── homework_4 │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── dice.c │ │ │ │ ├── dice.h │ │ │ │ ├── ex.h │ │ │ │ ├── game.c │ │ │ │ ├── game.h │ │ │ │ ├── homework_4.vcxproj │ │ │ │ ├── homework_4.vcxproj.filters │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random.c │ │ │ │ └── random.h │ │ └── team_1 │ │ │ ├── CMakeLists.txt │ │ │ ├── main.c │ │ │ └── ui │ │ │ └── console │ │ │ ├── user_keyboard_input.c │ │ │ └── user_keyboard_input.h │ ├── homeworke day3 │ │ ├── homeworke day3.sln │ │ ├── homeworke day3 │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── homeworke day3.vcxproj │ │ │ ├── homeworke day3.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── print_random.c │ │ │ ├── print_random.h │ │ │ ├── random_generator.c │ │ │ └── random_generator.h │ │ └── homwork_day3 │ │ │ ├── homwork_day3.sln │ │ │ └── homwork_day3 │ │ │ ├── homwork_day3.vcxproj │ │ │ ├── homwork_day3.vcxproj.filters │ │ │ └── main.c │ ├── how_to_process_keyboard_input │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── ui │ │ │ └── console │ │ │ ├── user_keyboard_input.c │ │ │ └── user_keyboard_input.h │ ├── memory_leak_check │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ └── test_main.cpp │ ├── nineth │ │ ├── CMakeLists.txt │ │ ├── main │ │ └── main.c │ ├── ninth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── player │ │ │ └── entity │ │ │ ├── player.c │ │ │ └── player.h │ ├── prepare.txt │ ├── seventh │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ └── entity │ │ │ │ ├── account.c │ │ │ │ ├── account.h │ │ │ │ ├── account_manager.c │ │ │ │ └── account_manager.h │ │ ├── led │ │ │ └── entity │ │ │ │ ├── led.c │ │ │ │ └── led.h │ │ └── main.c │ ├── tenth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_operation_response.c │ │ │ │ │ └── vector_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ ├── test │ │ ├── basic │ │ │ └── basic │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main │ │ │ │ └── main.c │ │ ├── basic_class │ │ │ ├── 1 │ │ │ │ ├── grammar_prob_first.c │ │ │ │ └── grammar_prob_first.h │ │ │ ├── 2 │ │ │ │ ├── grammar_prob_second.c │ │ │ │ └── grammar_prob_second.h │ │ │ ├── 3 │ │ │ │ ├── grammar_prob_third.c │ │ │ │ └── grammar_prob_third.h │ │ │ ├── 4 │ │ │ │ ├── grammar_prob_fourth.c │ │ │ │ └── grammar_prob_fourth.h │ │ │ ├── 5 │ │ │ │ ├── grammar_prob_fifth.c │ │ │ │ └── grammar_prob_fifth.h │ │ │ ├── 6 │ │ │ │ ├── grammar_prob_sixth.c │ │ │ │ └── grammar_prob_sixth.h │ │ │ ├── 7 │ │ │ │ ├── grammar_prob_seventh.c │ │ │ │ └── grammar_prob_seventh.h │ │ │ ├── 8 │ │ │ │ ├── grammar_prob_eighth.c │ │ │ │ └── grammar_prob_eighth.h │ │ │ ├── 9 │ │ │ │ ├── grammar_prob_ninth.c │ │ │ │ └── grammar_prob_ninth.h │ │ │ ├── 10 │ │ │ │ ├── grammar_prob_tenth.c │ │ │ │ └── grammar_prob_tenth.h │ │ │ ├── 11 │ │ │ │ ├── grammar_prob_eleventh.c │ │ │ │ └── grammar_prob_eleventh.h │ │ │ ├── CMakeLists.txt │ │ │ ├── extra │ │ │ │ ├── i_wanna_return_float_random.c │ │ │ │ └── i_wanna_return_float_random.h │ │ │ ├── main.c │ │ │ └── utility │ │ │ │ ├── random.c │ │ │ │ └── random.h │ │ ├── test_1 │ │ │ ├── 1 │ │ │ │ ├── func_var_first.c │ │ │ │ └── func_var_first.h │ │ │ ├── 2 │ │ │ │ ├── func_var_second.c │ │ │ │ └── func_var_second.h │ │ │ ├── 3 │ │ │ │ ├── func_var_third.c │ │ │ │ └── func_var_third.h │ │ │ ├── 4 │ │ │ │ ├── func_var_fourth.c │ │ │ │ └── func_var_fourth.h │ │ │ ├── 5 │ │ │ │ ├── func_var_fifth.c │ │ │ │ └── func_var_fifth.h │ │ │ ├── 6 │ │ │ │ ├── func_var_sixth.c │ │ │ │ └── func_var_sixth.h │ │ │ ├── 9 │ │ │ │ ├── func_var_ninth.c │ │ │ │ └── func_var_ninth.h │ │ │ ├── 10 │ │ │ │ ├── func_var_tenth.c │ │ │ │ └── func_var_tenth.h │ │ │ ├── 11 │ │ │ │ ├── func_var_eleventh.c │ │ │ │ └── func_var_eleventh.h │ │ │ ├── 13 │ │ │ │ ├── func_var_thirteenth.c │ │ │ │ └── func_var_thirteenth.h │ │ │ ├── 14 │ │ │ │ ├── func_var_fourteenth.c │ │ │ │ └── func_var_fourteenth.h │ │ │ ├── 15 │ │ │ │ ├── func_var_fifteenth.c │ │ │ │ └── func_var_fifteenth.h │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ ├── test_5 │ │ │ ├── even_number │ │ │ │ ├── even_advanced │ │ │ │ │ ├── even_advanced.c │ │ │ │ │ └── even_advanced.h │ │ │ │ ├── even_number.c │ │ │ │ └── even_number.h │ │ │ ├── random │ │ │ │ ├── print_random.c │ │ │ │ ├── print_random.h │ │ │ │ ├── random_generator.c │ │ │ │ └── random_generator.h │ │ │ └── roll │ │ │ │ ├── generate_random │ │ │ │ ├── generate_random.c │ │ │ │ └── generate_random.h │ │ │ │ ├── roll_number.c │ │ │ │ └── roll_number.h │ │ ├── xx-1 │ │ │ ├── CMakeLists.txt │ │ │ ├── build_script.sh │ │ │ ├── main.c │ │ │ ├── simple │ │ │ │ ├── add.c │ │ │ │ ├── add.h │ │ │ │ ├── sub.c │ │ │ │ └── sub.h │ │ │ └── tests │ │ │ │ ├── add_test.cpp │ │ │ │ ├── sub_test.cpp │ │ │ │ └── test_main.cpp │ │ └── xx │ │ │ ├── 1 │ │ │ ├── first.c │ │ │ └── first.h │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ ├── third │ │ ├── third.sln │ │ └── third │ │ │ ├── FileName.c │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── print_even.c │ │ │ ├── print_even.h │ │ │ ├── print_even_advanced.c │ │ │ ├── print_even_advanced.h │ │ │ ├── print_random.c │ │ │ ├── print_random.h │ │ │ ├── random_dice.c │ │ │ ├── random_dice.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── third.vcxproj │ │ │ └── third.vcxproj.filters │ └── thirteenth │ │ ├── CMakeLists.txt │ │ ├── created_file │ │ ├── format_test.txt │ │ └── 이거만들래.txt │ │ ├── file_io │ │ ├── how_to_make_file.c │ │ ├── how_to_make_file.h │ │ ├── how_to_read_content.c │ │ ├── how_to_read_content.h │ │ ├── how_to_write_content.c │ │ └── how_to_write_content.h │ │ ├── format_test │ │ ├── form_test.c │ │ ├── form_test.h │ │ ├── make_file_from_format.c │ │ ├── make_file_from_format.h │ │ ├── make_format_from_file.c │ │ └── make_format_from_file.h │ │ └── main.c ├── seunghunjo │ ├── PROB1 │ │ ├── 1 │ │ │ ├── func_var_first.c │ │ │ └── func_var_first.h │ │ ├── 2 │ │ │ ├── func_var_second.c │ │ │ └── func_var_second.h │ │ ├── 3 │ │ │ ├── func_var_third.c │ │ │ └── func_var_third.h │ │ ├── 4 │ │ │ ├── func_var_fourth.c │ │ │ └── func_var_fourth.h │ │ ├── 5 │ │ │ ├── func_var_fifth.c │ │ │ └── func_var_fifth.h │ │ ├── 6 │ │ │ ├── func_var_sixth.c │ │ │ └── func_var_sixth.h │ │ ├── 9 │ │ │ ├── func_var_ninth.c │ │ │ └── func_var_ninth.h │ │ ├── 10 │ │ │ ├── func_var_tenth.c │ │ │ └── func_var_tenth.h │ │ ├── 11 │ │ │ ├── func_var_eleventh.c │ │ │ └── func_var_eleventh.h │ │ ├── 13 │ │ │ ├── func_var_thirteenth.c │ │ │ └── func_var_thirteenth.h │ │ ├── 14 │ │ │ ├── func_var_fourteenth.c │ │ │ └── func_var_fourteenth.h │ │ ├── 15 │ │ │ ├── func_var_fifteenth.c │ │ │ └── func_var_fifteenth.h │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── Untitled 1.odt │ ├── eighth │ │ ├── CMakeLists.txt │ │ ├── dice │ │ │ └── entity │ │ │ │ ├── dice.c │ │ │ │ └── dice.h │ │ ├── main.c │ │ ├── player │ │ │ └── entity │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ └── utility │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── exam │ │ ├── CMakeLists.txt │ │ ├── domain │ │ │ └── model │ │ │ │ ├── board.c │ │ │ │ └── board.h │ │ └── main.c │ ├── exception_test │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── exception.c │ │ │ └── exception.h │ │ ├── tests │ │ │ └── test_main.cpp │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── fifth │ │ ├── fifth.sln │ │ └── fifth │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── fifth.vcxproj │ │ │ ├── fifth.vcxproj.filters │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── first │ │ ├── first.sln │ │ └── first │ │ │ ├── first.c │ │ │ ├── first.vcxproj │ │ │ ├── first.vcxproj.filters │ │ │ ├── fourth.c │ │ │ ├── fourth.h │ │ │ ├── second.c │ │ │ ├── second.h │ │ │ ├── third.c │ │ │ └── third.h │ ├── fourth │ │ ├── fourth.sln │ │ └── fourth │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── fourth.vcxproj │ │ │ ├── fourth.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── malloc_test.c │ │ │ ├── malloc_test.h │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── win.c │ │ │ └── win.h │ ├── grammar-prob │ │ ├── 1 │ │ │ ├── grammar_prob_first.c │ │ │ └── grammar_prob_first.h │ │ ├── 2 │ │ │ ├── grammar_prob_second.c │ │ │ └── grammar_prob_second.h │ │ ├── 3 │ │ │ ├── grammar_prob_third.c │ │ │ └── grammar_prob_third.h │ │ ├── 4 │ │ │ ├── grammar_prob_fourth.c │ │ │ └── grammar_prob_fourth.h │ │ ├── 5 │ │ │ ├── grammar_prob_fifth.c │ │ │ └── grammar_prob_fifth.h │ │ ├── 6 │ │ │ ├── grammar_prob_sixth.c │ │ │ └── grammar_prob_sixth.h │ │ ├── 7 │ │ │ ├── grammar_prob_seventh.c │ │ │ └── grammar_prob_seventh.h │ │ ├── 8 │ │ │ ├── grammar_prob_eighth.c │ │ │ └── grammar_prob_eighth.h │ │ ├── 9 │ │ │ ├── grammar_prob_ninth.c │ │ │ └── grammar_prob_ninth.h │ │ ├── 10 │ │ │ ├── grammar_prob_tenth.c │ │ │ └── grammar_prob_tenth.h │ │ ├── 11 │ │ │ ├── grammar_prob_eleventh.c │ │ │ └── grammar_prob_eleventh.h │ │ ├── CMakeLists.txt │ │ ├── extra │ │ │ ├── i_wanna_return_float_random.c │ │ │ └── i_wanna_return_float_random.h │ │ ├── main.c │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── gtest_example │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ ├── how_to_use │ │ │ └── how_to_tdd.cpp │ │ │ └── test_main.cpp │ ├── gtest_practice │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── simple │ │ │ ├── add.c │ │ │ ├── add.h │ │ │ ├── sub.c │ │ │ └── sub.h │ │ └── tests │ │ │ ├── add_test.cpp │ │ │ ├── sub_test.cpp │ │ │ └── test_main.cpp │ ├── homework │ │ ├── 2 │ │ │ ├── C Homework1.pdf │ │ │ └── C Homework1.txt │ │ ├── 3 │ │ │ └── homework3 │ │ │ │ ├── homework3.sln │ │ │ │ └── homework3 │ │ │ │ ├── dice_game.c │ │ │ │ ├── dice_game.h │ │ │ │ ├── homework3.vcxproj │ │ │ │ ├── homework3.vcxproj.filters │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random_generator.c │ │ │ │ └── random_generator.h │ │ ├── 4 │ │ │ └── homework4 │ │ │ │ ├── homework4.sln │ │ │ │ └── homework4 │ │ │ │ ├── dice.c │ │ │ │ ├── dice.h │ │ │ │ ├── homework4.vcxproj │ │ │ │ ├── homework4.vcxproj.filters │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── player_attack.c │ │ │ │ ├── player_attack.h │ │ │ │ ├── random_generator.c │ │ │ │ ├── random_generator.h │ │ │ │ ├── skill.c │ │ │ │ ├── skill.h │ │ │ │ ├── win.c │ │ │ │ └── win.h │ │ └── 5 │ │ │ ├── CMakeLists.txt │ │ │ ├── account │ │ │ └── entity │ │ │ │ ├── account.c │ │ │ │ └── account.h │ │ │ ├── main.c │ │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ │ └── vector │ │ │ └── entity │ │ │ ├── vector.c │ │ │ └── vector.h │ ├── memory_leak_check │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ └── test_main.cpp │ ├── ninth │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── prepare.txt │ ├── second │ │ ├── second.sln │ │ └── second │ │ │ ├── main.c │ │ │ ├── second.vcxproj │ │ │ └── second.vcxproj.filters │ ├── seventh │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ └── entity │ │ │ │ ├── account.c │ │ │ │ ├── account.h │ │ │ │ ├── account_manager.c │ │ │ │ └── account_manager.h │ │ ├── led │ │ │ └── entity │ │ │ │ ├── led.c │ │ │ │ └── led.h │ │ └── main.c │ ├── tenth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_random_operation_response.c │ │ │ │ │ └── vector_random_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ ├── test │ │ ├── 11 │ │ │ ├── eleventh.c │ │ │ └── eleventh.h │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── test2 │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── third │ │ ├── third.sln │ │ └── third │ │ │ ├── diec_game.c │ │ │ ├── diec_game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── print_even.c │ │ │ ├── print_even.h │ │ │ ├── print_even_advanced.c │ │ │ ├── print_even_advanced.h │ │ │ ├── print_random.c │ │ │ ├── print_random.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── third.vcxproj │ │ │ └── third.vcxproj.filters │ └── thirteenth │ │ ├── CMakeLists.txt │ │ ├── created_file │ │ ├── format_test.txt │ │ └── 이거만들래.txt │ │ ├── file_io │ │ ├── how_to_make_file.c │ │ ├── how_to_make_file.h │ │ ├── how_to_read_content.c │ │ ├── how_to_read_content.h │ │ ├── how_to_write_content.c │ │ └── how_to_write_content.h │ │ ├── format_test │ │ ├── form_test.c │ │ ├── form_test.h │ │ ├── make_file_from_format.c │ │ ├── make_file_from_format.h │ │ ├── make_format_from_file.c │ │ └── make_format_from_file.h │ │ └── main.c ├── sunghwanpark │ ├── asm_ptr │ │ ├── .vscode │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── main │ │ └── main.c │ ├── easy_problems │ │ ├── 1 │ │ │ ├── func_var_first.c │ │ │ └── func_var_first.h │ │ ├── 2 │ │ │ ├── func_var_second.c │ │ │ └── func_var_second.h │ │ ├── 3 │ │ │ ├── func_var_third.c │ │ │ └── func_var_third.h │ │ ├── 4 │ │ │ ├── func_var_fourth.c │ │ │ └── func_var_fourth.h │ │ ├── 5 │ │ │ ├── func_var_fifth.c │ │ │ └── func_var_fifth.h │ │ ├── 6 │ │ │ ├── func_var_sixth.c │ │ │ └── func_var_sixth.h │ │ ├── 9 │ │ │ ├── func_var_ninth.c │ │ │ └── func_var_ninth.h │ │ ├── 10 │ │ │ ├── func_var_tenth.c │ │ │ └── func_var_tenth.h │ │ ├── 11 │ │ │ ├── func_var_eleventh.c │ │ │ └── func_var_eleventh.h │ │ ├── 13 │ │ │ ├── func_var_thirteenth.c │ │ │ └── func_var_thirteenth.h │ │ ├── 14 │ │ │ ├── func_var_fourteenth.c │ │ │ └── func_var_fourteenth.h │ │ ├── 15 │ │ │ ├── func_var_fifteenth.c │ │ │ └── func_var_fifteenth.h │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── eighth │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── dice │ │ │ └── entity │ │ │ │ ├── dice.c │ │ │ │ └── dice.h │ │ ├── main.c │ │ ├── player │ │ │ └── entity │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ └── utility │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── exception_test │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── exception.c │ │ │ └── exception.h │ │ ├── tests │ │ │ └── test_main.cpp │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── fifth │ │ ├── fifth.sln │ │ └── fifth │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── fifth.vcxproj │ │ │ ├── fifth.vcxproj.filters │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── first │ │ ├── first.sln │ │ └── first │ │ │ ├── first.c │ │ │ ├── first.vcxproj │ │ │ ├── first.vcxproj.filters │ │ │ ├── fourth.c │ │ │ ├── fourth.h │ │ │ ├── second.c │ │ │ └── second.h │ ├── fourth │ │ ├── Dice Game homework │ │ │ ├── Dice Game homework.vcxproj │ │ │ ├── Dice Game homework.vcxproj.filters │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── main.c │ │ │ ├── malloc_test.c │ │ │ ├── malloc_test.h │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random.c │ │ │ ├── random.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── win.c │ │ │ └── win.h │ │ └── fourth.sln │ ├── grammer_problems │ │ ├── 1 │ │ │ ├── grammar_prob_first.c │ │ │ └── grammar_prob_first.h │ │ ├── 2 │ │ │ ├── grammar_prob_second.c │ │ │ └── grammar_prob_second.h │ │ ├── 3 │ │ │ ├── grammar_prob_third.c │ │ │ └── grammar_prob_third.h │ │ ├── 4 │ │ │ ├── grammar_prob_fourth.c │ │ │ └── grammar_prob_fourth.h │ │ ├── 5 │ │ │ ├── grammar_prob_fifth.c │ │ │ └── grammar_prob_fifth.h │ │ ├── 6 │ │ │ ├── grammar_prob_sixth.c │ │ │ └── grammar_prob_sixth.h │ │ ├── 7 │ │ │ ├── grammar_prob_seventh.c │ │ │ └── grammar_prob_seventh.h │ │ ├── 8 │ │ │ ├── grammar_prob_eighth.c │ │ │ └── grammar_prob_eighth.h │ │ ├── 9 │ │ │ ├── grammar_prob_ninth.c │ │ │ └── grammar_prob_ninth.h │ │ ├── 10 │ │ │ ├── grammar_prob_tenth.c │ │ │ └── grammar_prob_tenth.h │ │ ├── 11 │ │ │ ├── grammar_prob_eleventh.c │ │ │ └── grammar_prob_eleventh.h │ │ ├── CMakeLists.txt │ │ ├── extra │ │ │ ├── i_wanna_return_float_random.c │ │ │ └── i_wanna_return_float_random.h │ │ └── main.c │ ├── gtest_practice │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── simple │ │ │ ├── add.c │ │ │ ├── add.h │ │ │ ├── sub.c │ │ │ └── sub.h │ │ └── tests │ │ │ ├── add_test.cpp │ │ │ ├── sub_test.cpp │ │ │ └── test_main.cpp │ ├── homework │ │ ├── Dice Game Pointer │ │ │ ├── Dice Game Pointer.sln │ │ │ └── Dice Game Pointer │ │ │ │ ├── Dice Game Pointer.vcxproj │ │ │ │ ├── Dice Game Pointer.vcxproj.filters │ │ │ │ ├── dice.c │ │ │ │ ├── dice.h │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ ├── Dice Game homework & fourth │ │ │ ├── Dice Game homework │ │ │ │ ├── Dice Game homework.vcxproj │ │ │ │ ├── Dice Game homework.vcxproj.filters │ │ │ │ ├── dice_game.c │ │ │ │ ├── dice_game.h │ │ │ │ ├── main.c │ │ │ │ ├── malloc_test.c │ │ │ │ ├── malloc_test.h │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random.c │ │ │ │ ├── random.h │ │ │ │ ├── random_generator.c │ │ │ │ ├── random_generator.h │ │ │ │ ├── win.c │ │ │ │ └── win.h │ │ │ └── fourth.sln │ │ └── 어셈블리 분석.pdf │ ├── nineth │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── prepare.txt │ ├── second │ │ ├── second.sln │ │ └── second │ │ │ ├── main.c │ │ │ ├── second.vcxproj │ │ │ └── second.vcxproj.filters │ ├── seventh │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ └── entity │ │ │ │ ├── account.c │ │ │ │ ├── account.h │ │ │ │ ├── account_manager.c │ │ │ │ └── account_manager.h │ │ ├── build │ │ │ ├── .cmake │ │ │ │ └── api │ │ │ │ │ └── v1 │ │ │ │ │ ├── query │ │ │ │ │ └── client-vscode │ │ │ │ │ │ └── query.json │ │ │ │ │ └── reply │ │ │ │ │ ├── cache-v2-899bae5cec83a3cb4b74.json │ │ │ │ │ ├── cmakeFiles-v1-d1ac9e305a85ed19ecb9.json │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ └── toolchains-v1-531d75e10f01a26a137f.json │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.22.1 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ └── CMakeCCompilerId.c │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ └── CMakeCXXCompilerId.cpp │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ ├── Makefile.cmake │ │ │ │ ├── Makefile2 │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── c_app.dir │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── compiler_depend.make │ │ │ │ │ ├── compiler_depend.ts │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── cmake.check_cache │ │ │ │ └── progress.marks │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ └── compile_commands.json │ │ ├── led │ │ │ └── entity │ │ │ │ ├── led.c │ │ │ │ └── led.h │ │ └── main.c │ ├── tenth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_random_operation_response.c │ │ │ │ │ └── vector_random_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ ├── vector_math_api_command_table_mapper.h │ │ │ │ │ └── vector_math_apid_command_table.c │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ ├── third │ │ ├── third.sln │ │ └── third │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── print_even.c │ │ │ ├── print_even.h │ │ │ ├── print_even_advanced.c │ │ │ ├── print_even_advanced.h │ │ │ ├── print_random.c │ │ │ ├── print_random.h │ │ │ ├── random_dice.c │ │ │ ├── random_dice.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── third.vcxproj │ │ │ └── third.vcxproj.filters │ └── thirteenth │ │ ├── CMakeLists.txt │ │ ├── created_file │ │ ├── format_test.txt │ │ └── 이거만들래.txt │ │ ├── file_io │ │ ├── how_to_make_file.c │ │ ├── how_to_make_file.h │ │ ├── how_to_read_content.c │ │ ├── how_to_read_content.h │ │ ├── how_to_write_content.c │ │ └── how_to_write_content.h │ │ ├── format_test │ │ ├── form_test.c │ │ ├── form_test.h │ │ ├── make_file_from_format.c │ │ ├── make_file_from_format.h │ │ ├── make_format_from_file.c │ │ └── make_format_from_file.h │ │ └── main.c ├── sungyonglee │ ├── eighth │ │ ├── CMakeLists.txt │ │ ├── asm_ptr │ │ │ ├── CMakeLists.txt │ │ │ ├── main │ │ │ └── main.c │ │ ├── dice │ │ │ └── entity │ │ │ │ ├── dice.c │ │ │ │ └── dice.h │ │ ├── main.c │ │ ├── player │ │ │ └── entity │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ └── utility │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── eleven │ │ ├── 13 │ │ │ ├── quiz13.c │ │ │ └── quiz13.h │ │ ├── 14 │ │ │ ├── quiz14.c │ │ │ └── quiz14.h │ │ ├── 15 │ │ │ ├── quiz15.c │ │ │ └── quiz15.h │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── quiz1 │ │ │ ├── quiz1.c │ │ │ └── quiz1.h │ ├── exception_test │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── exception.c │ │ │ └── exception.h │ │ ├── tests │ │ │ └── test_main.cpp │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── fifth │ │ ├── fifth.sln │ │ └── fifth │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── fifth.vcxproj │ │ │ ├── fifth.vcxproj.filters │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── randdom.c │ │ │ └── random.h │ ├── firtst │ │ ├── firtst.sln │ │ └── firtst │ │ │ ├── first.c │ │ │ ├── firtst.vcxproj │ │ │ └── firtst.vcxproj.filters │ ├── grammar-prob │ │ ├── 1 │ │ │ ├── grammar_prob_first.c │ │ │ └── grammar_prob_first.h │ │ ├── 2 │ │ │ ├── grammar_prob_second.c │ │ │ └── grammar_prob_second.h │ │ ├── 3 │ │ │ ├── grammar_prob_third.c │ │ │ └── grammar_prob_third.h │ │ ├── 4 │ │ │ ├── grammar_prob_fourth.c │ │ │ └── grammar_prob_fourth.h │ │ ├── 5 │ │ │ ├── grammar_prob_fifth.c │ │ │ └── grammar_prob_fifth.h │ │ ├── 6 │ │ │ ├── grammar_prob_sixth.c │ │ │ └── grammar_prob_sixth.h │ │ ├── 7 │ │ │ ├── grammar_prob_seventh.c │ │ │ └── grammar_prob_seventh.h │ │ ├── 8 │ │ │ ├── grammar_prob_eighth.c │ │ │ └── grammar_prob_eighth.h │ │ ├── 9 │ │ │ ├── grammar_prob_ninth.c │ │ │ └── grammar_prob_ninth.h │ │ ├── 10 │ │ │ ├── grammar_prob_tenth.c │ │ │ └── grammar_prob_tenth.h │ │ ├── 11 │ │ │ ├── grammar_prob_eleventh.c │ │ │ └── grammar_prob_eleventh.h │ │ ├── CMakeLists.txt │ │ ├── extra │ │ │ ├── i_wanna_return_float_random.c │ │ │ └── i_wanna_return_float_random.h │ │ ├── how_to_process_keyboard_input │ │ │ ├── CMakeLists.txt │ │ │ ├── main.c │ │ │ └── ui │ │ │ │ └── console │ │ │ │ ├── user_keyboard_input.c │ │ │ │ └── user_keyboard_input.h │ │ ├── main.c │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── gtest_example │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ ├── 3.22.1 │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ └── CMakeCCompilerId.c │ │ │ │ └── CompilerIdCXX │ │ │ │ │ └── CMakeCXXCompilerId.cpp │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── CMakeRuleHashes.txt │ │ │ ├── Makefile.cmake │ │ │ ├── Makefile2 │ │ │ ├── TargetDirectories.txt │ │ │ ├── c_app.dir │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── compiler_depend.internal │ │ │ │ ├── compiler_depend.make │ │ │ │ ├── compiler_depend.ts │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ ├── cmake.check_cache │ │ │ ├── every_unit_test.dir │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── compiler_depend.make │ │ │ │ ├── compiler_depend.ts │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ ├── logic_lib.dir │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── cmake_clean_target.cmake │ │ │ │ ├── compiler_depend.make │ │ │ │ ├── compiler_depend.ts │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ ├── progress.marks │ │ │ └── run.dir │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── compiler_depend.make │ │ │ │ ├── compiler_depend.ts │ │ │ │ └── progress.make │ │ ├── CMakeLists.txt │ │ ├── CTestTestfile.cmake │ │ ├── Makefile │ │ ├── build_script.sh │ │ ├── c_app │ │ ├── cmake_install.cmake │ │ ├── every_unit_test │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ ├── how_to_use │ │ │ ├── how_to_tdd.cpp │ │ │ └── wanna_verify_some_functions.cpp │ │ │ └── test_main.cpp │ ├── gtest_practice │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── simple │ │ │ ├── add.c │ │ │ ├── add.h │ │ │ ├── sub.c │ │ │ └── sub.h │ │ └── tests │ │ │ ├── add_test.cpp │ │ │ ├── sub_test.cpp │ │ │ └── test_main.cpp │ ├── homework │ │ └── homework 231101.pdf │ ├── homework2 │ │ ├── homework2.sln │ │ └── homework2 │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── homework2.vcxproj │ │ │ ├── homework2.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── random_generator.c │ │ │ └── random_generator.h │ ├── homework3 │ │ ├── homework3.sln │ │ └── homework3 │ │ │ ├── homework3.vcxproj │ │ │ ├── homework3.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ └── random_generator.h │ ├── homework6 │ │ ├── CMakeLists.txt │ │ ├── main │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── vector.c │ │ │ └── vector.h │ ├── memory_leak_check │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ └── test_main.cpp │ ├── ninth │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── prepare.txt │ ├── prob1 │ │ ├── 1 │ │ │ ├── func_var_first.c │ │ │ └── func_var_first.h │ │ ├── 2 │ │ │ ├── func_var_second.c │ │ │ └── func_var_second.h │ │ ├── 3 │ │ │ ├── func_var_third.c │ │ │ └── func_var_third.h │ │ ├── 4 │ │ │ ├── func_var_fourth.c │ │ │ └── func_var_fourth.h │ │ ├── 5 │ │ │ ├── func_var_fifth.c │ │ │ └── func_var_fifth.h │ │ ├── 6 │ │ │ ├── func_var_sixth.c │ │ │ └── func_var_sixth.h │ │ ├── 9 │ │ │ ├── func_var_ninth.c │ │ │ └── func_var_ninth.h │ │ ├── 10 │ │ │ ├── func_var_tenth.c │ │ │ └── func_var_tenth.h │ │ ├── 11 │ │ │ ├── func_var_eleventh.c │ │ │ └── func_var_eleventh.h │ │ ├── 13 │ │ │ ├── func_var_thirteenth.c │ │ │ └── func_var_thirteenth.h │ │ ├── 14 │ │ │ ├── func_var_fourteenth.c │ │ │ └── func_var_fourteenth.h │ │ ├── 15 │ │ │ ├── func_var_fifteenth.c │ │ │ └── func_var_fifteenth.h │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── prob2 │ │ ├── 1 │ │ │ ├── first.c │ │ │ └── first.h │ │ ├── 2 │ │ │ ├── second.c │ │ │ └── second.h │ │ ├── 4 │ │ │ ├── fourth.c │ │ │ └── fourth.h │ │ ├── 5 │ │ │ ├── fifth.c │ │ │ └── fifth.h │ │ ├── 6 │ │ │ ├── sixth.c │ │ │ └── sixth.h │ │ ├── 7 │ │ │ ├── seventh.c │ │ │ └── seventh.h │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── seventh │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ └── entity │ │ │ │ ├── account.c │ │ │ │ ├── account.h │ │ │ │ ├── account_manager.c │ │ │ │ └── account_manager.h │ │ ├── led │ │ │ └── entity │ │ │ │ ├── led.c │ │ │ │ └── led.h │ │ └── main.c │ ├── study3 │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_operation_response.c │ │ │ │ │ └── vector_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ ├── team3board │ │ ├── CMakeLists.txt │ │ ├── board │ │ │ ├── adapter │ │ │ │ ├── in │ │ │ │ │ └── api │ │ │ │ │ │ ├── board_api_command.h │ │ │ │ │ │ ├── board_api_command_table.c │ │ │ │ │ │ ├── board_api_command_table.h │ │ │ │ │ │ └── board_api_command_table_mapper.h │ │ │ │ └── out │ │ │ │ │ └── in_memory │ │ │ │ │ ├── board_in_memory_command.h │ │ │ │ │ ├── board_in_memory_command_tablel.c │ │ │ │ │ ├── board_in_memory_command_tablel.h │ │ │ │ │ └── board_in_memory_command_tablel_mapper.h │ │ │ ├── application │ │ │ │ └── services │ │ │ │ │ ├── board_service_command.h │ │ │ │ │ ├── board_service_command_table.c │ │ │ │ │ ├── board_service_command_table.h │ │ │ │ │ ├── board_service_command_table_mapper.h │ │ │ │ │ ├── delete │ │ │ │ │ ├── delete_service_command_handler.c │ │ │ │ │ └── delete_service_command_handler.h │ │ │ │ │ ├── edit │ │ │ │ │ ├── edit_service_command_handler.c │ │ │ │ │ └── edit_service_command_handler.h │ │ │ │ │ ├── list │ │ │ │ │ ├── list_service_command_handler.c │ │ │ │ │ └── list_service_command_handler.h │ │ │ │ │ ├── read │ │ │ │ │ ├── read_service_command_handler.c │ │ │ │ │ └── read_service_command_handler.h │ │ │ │ │ └── write │ │ │ │ │ ├── write_service_command_handler.c │ │ │ │ │ └── write_service_command_handler.h │ │ │ └── domain │ │ │ │ └── model │ │ │ │ ├── post_model.c │ │ │ │ └── post_model.h │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ └── test_main.cpp │ ├── tenth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_operation_response.c │ │ │ │ │ └── vector_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ └── thirteenth │ │ ├── CMakeLists.txt │ │ ├── created_file │ │ ├── format_test.txt │ │ └── 이거만들래.txt │ │ ├── file_io │ │ ├── how_to_make_file.c │ │ ├── how_to_make_file.h │ │ ├── how_to_read_content.c │ │ ├── how_to_read_content.h │ │ ├── how_to_write_content.c │ │ └── how_to_write_content.h │ │ ├── format_test │ │ ├── form_test.c │ │ ├── form_test.h │ │ ├── make_file_from_format.c │ │ ├── make_file_from_format.h │ │ ├── make_format_from_file.c │ │ └── make_format_from_file.h │ │ └── main.c ├── sungyoungjang │ ├── eighth │ │ ├── .vscode │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── dice │ │ │ └── entity │ │ │ │ ├── dice.c │ │ │ │ └── dice.h │ │ ├── main.c │ │ ├── player │ │ │ └── entity │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ └── utility │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── exception_test │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── exception.c │ │ │ └── exception.h │ │ ├── tests │ │ │ └── test_main.cpp │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── first │ │ ├── first.sln │ │ └── first │ │ │ ├── first.c │ │ │ ├── first.vcxproj │ │ │ ├── first.vcxproj.filters │ │ │ ├── fourth.c │ │ │ ├── fourth.h │ │ │ ├── second.c │ │ │ └── second.h │ ├── fourth │ │ ├── fourth.sln │ │ └── fourth │ │ │ ├── dice.h │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── fourth.vcxproj │ │ │ ├── fourth.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── malloc_test.c │ │ │ ├── malloc_test.h │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── win.c │ │ │ └── win.h │ ├── gtest_ex │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── entity │ │ │ └── product │ │ │ │ ├── product.c │ │ │ │ └── product.h │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ ├── how_to_use │ │ │ ├── how_to_tdd.cpp │ │ │ └── wanna_verify_some_functions.cpp │ │ │ └── test_main.cpp │ ├── gtest_practice │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── simple │ │ │ ├── add.c │ │ │ ├── add.h │ │ │ ├── sub.c │ │ │ └── sub.h │ │ └── tests │ │ │ ├── add_test.cpp │ │ │ └── test_main.cpp │ ├── homework │ │ ├── feat[장성영] 2일차 과제 [SDC-Ai-x].pdf │ │ ├── homework3 │ │ │ ├── homework3.sln │ │ │ └── homework3 │ │ │ │ ├── homework3.vcxproj │ │ │ │ ├── homework3.vcxproj.filters │ │ │ │ └── main.c │ │ ├── homework4 │ │ │ ├── homework4.sln │ │ │ └── homework4 │ │ │ │ ├── dice.c │ │ │ │ ├── dice.h │ │ │ │ ├── homework4.vcxproj │ │ │ │ ├── homework4.vcxproj.filters │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random_gen.c │ │ │ │ ├── random_gen.h │ │ │ │ ├── skill.c │ │ │ │ ├── skill.h │ │ │ │ ├── winner.c │ │ │ │ └── winner.h │ │ ├── homework5_vector │ │ │ ├── CMakeLists.txt │ │ │ ├── main │ │ │ ├── main.c │ │ │ ├── random │ │ │ │ └── entity │ │ │ │ │ ├── random.c │ │ │ │ │ └── random.h │ │ │ ├── result │ │ │ │ └── entity │ │ │ │ │ ├── result.c │ │ │ │ │ └── result.h │ │ │ └── vector │ │ │ │ └── entity │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ └── 주사위게임_퀴즈풀이 │ │ │ ├── 주사위게임_퀴즈풀이.sln │ │ │ └── 주사위게임_퀴즈풀이 │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── ddd.java │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random.c │ │ │ ├── random.h │ │ │ ├── 주사위게임_퀴즈풀이.vcxproj │ │ │ └── 주사위게임_퀴즈풀이.vcxproj.filters │ ├── input_test │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── ui │ │ │ └── console │ │ │ ├── user_keyboard_input.c │ │ │ └── user_keyboard_input.h │ ├── memory_leak_check │ │ ├── CMakeLists.txt │ │ ├── build_script.sh │ │ ├── main.c │ │ ├── sample │ │ │ ├── sample.c │ │ │ └── sample.h │ │ └── tests │ │ │ └── test_main.cpp │ ├── nineth │ │ ├── CMakeLists.txt │ │ ├── main │ │ └── main.c │ ├── practice │ │ ├── 1 │ │ │ ├── main │ │ │ └── main.c │ │ ├── 2 │ │ │ ├── main │ │ │ └── main.c │ │ ├── 3 │ │ │ ├── main │ │ │ └── main.c │ │ ├── 10 │ │ │ ├── main │ │ │ └── main.c │ │ ├── CMakeLists.txt │ │ └── 서술형 │ │ │ └── 서술형.text │ ├── practice1 │ │ ├── 1 │ │ │ ├── first.c │ │ │ └── first.h │ │ ├── 2 │ │ │ ├── second.c │ │ │ └── second.h │ │ ├── 3 │ │ │ ├── third.c │ │ │ └── third.h │ │ ├── 4 │ │ │ ├── fourth.c │ │ │ └── fourth.h │ │ ├── 5 │ │ │ ├── fifth.c │ │ │ └── fifth.h │ │ ├── 6 │ │ │ ├── sixth.c │ │ │ └── sixth.h │ │ ├── 7 │ │ │ ├── seventh.c │ │ │ └── seventh.h │ │ ├── 8 │ │ │ ├── eighth.c │ │ │ └── eighth.h │ │ ├── 9 │ │ │ ├── nineth.c │ │ │ └── nineth.h │ │ ├── 10 │ │ │ ├── tenth.c │ │ │ └── tenth.h │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── prepare.txt │ ├── second │ │ ├── second.sln │ │ └── second │ │ │ ├── main.c │ │ │ ├── second.vcxproj │ │ │ └── second.vcxproj.filters │ ├── seventh │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ └── entity │ │ │ │ ├── account.c │ │ │ │ ├── account.h │ │ │ │ ├── account_manager.c │ │ │ │ └── account_manager.h │ │ ├── led │ │ │ └── entity │ │ │ │ ├── led.c │ │ │ │ └── led.h │ │ └── main.c │ ├── tenth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_operation_response.c │ │ │ │ │ └── vector_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ ├── domain │ │ │ │ └── model │ │ │ │ │ ├── vector.c │ │ │ │ │ └── vector.h │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ ├── test │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── third │ │ ├── third.sln │ │ └── third │ │ │ ├── dice.c │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── find_even.c │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── print_even.h │ │ │ ├── print_even_adv.c │ │ │ ├── print_even_adv.h │ │ │ ├── print_random.c │ │ │ ├── print_random.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── third.vcxproj │ │ │ └── third.vcxproj.filters │ └── thirteenth │ │ ├── CMakeLists.txt │ │ ├── created_file │ │ └── format_test.txt │ │ ├── file_io │ │ ├── how_to_make_file.c │ │ ├── how_to_make_file.h │ │ ├── how_to_read_content.c │ │ ├── how_to_read_content.h │ │ ├── how_to_write_content.c │ │ └── how_to_write_content.h │ │ ├── format_test │ │ ├── form_test.c │ │ ├── form_test.h │ │ ├── make_file_from_format.c │ │ ├── make_file_from_format.h │ │ ├── make_format_from_file.c │ │ └── make_format_from_file.h │ │ └── main.c ├── yongsukchoi │ ├── Project1 │ │ ├── Project1.sln │ │ └── Project1 │ │ │ ├── Project1.vcxproj │ │ │ ├── Project1.vcxproj.filters │ │ │ ├── dice_game.c │ │ │ └── dice_game.h │ ├── asm_ptr │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── eighth │ │ ├── CMakeLists.txt │ │ ├── dice │ │ │ └── entity │ │ │ │ ├── dice.c │ │ │ │ └── dice.h │ │ ├── main.c │ │ ├── player │ │ │ └── entity │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ └── utility │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── fifth │ │ ├── fifth.sln │ │ └── fifth │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── fifth.vcxproj │ │ │ ├── fifth.vcxproj.filters │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── fisrt │ │ ├── fisrt.sln │ │ └── fisrt │ │ │ ├── first.c │ │ │ ├── fisrt.vcxproj │ │ │ ├── fisrt.vcxproj.filters │ │ │ ├── fource.c │ │ │ ├── fourth.h │ │ │ ├── second.c │ │ │ └── second.h │ ├── homework │ │ ├── homework1 │ │ │ ├── homework1.sln │ │ │ └── homework1 │ │ │ │ ├── dice.c │ │ │ │ ├── dice.h │ │ │ │ ├── homework1.vcxproj │ │ │ │ ├── homework1.vcxproj.filters │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random_generator.c │ │ │ │ ├── random_generator.h │ │ │ │ ├── win.c │ │ │ │ └── win.h │ │ └── homework2 │ │ │ ├── homework2.sln │ │ │ └── homework2 │ │ │ ├── homework2.vcxproj │ │ │ ├── homework2.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── roll_dice.c │ │ │ ├── roll_dice.h │ │ │ ├── win.c │ │ │ └── win.h │ ├── homework2 │ │ ├── CMakeLists.txt │ │ ├── generator │ │ │ ├── random_generator.c │ │ │ └── random_generator.h │ │ ├── main.c │ │ └── vector │ │ │ ├── vector.c │ │ │ └── vector.h │ ├── nineth │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── prepare.txt │ ├── second │ │ ├── second.sln │ │ └── second │ │ │ ├── main.c │ │ │ ├── second.vcxproj │ │ │ └── second.vcxproj.filters │ └── seventh │ │ ├── .vscode │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── account │ │ └── entity │ │ │ ├── account.c │ │ │ ├── account.h │ │ │ ├── account_manager.c │ │ │ └── account_manager.h │ │ ├── build │ │ └── .cmake │ │ │ └── api │ │ │ └── v1 │ │ │ └── reply │ │ │ ├── cache-v2-1282d0bc5892dfffa1a6.json │ │ │ ├── cmakeFiles-v1-2bbc552c0bc10cbd59bc.json │ │ │ ├── codemodel-v2-55597f11dfc065cb6cba.json │ │ │ ├── index-2023-11-08T01-41-42-0566.json │ │ │ ├── target-c_app-Debug-e18a6a48ec94bd92f675.json │ │ │ └── toolchains-v1-531d75e10f01a26a137f.json │ │ ├── led │ │ └── entity │ │ │ ├── led.c │ │ │ └── led.h │ │ ├── main │ │ └── main.c ├── youngchanhwang │ ├── asm_ptr │ │ ├── .vscode │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── main │ │ └── main.c │ ├── eighth │ │ ├── CMakeLists.txt │ │ ├── dice │ │ │ └── entity │ │ │ │ ├── dice.c │ │ │ │ └── dice.h │ │ ├── main.c │ │ ├── player │ │ │ └── entity │ │ │ │ ├── player.c │ │ │ │ └── player.h │ │ └── utility │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── eleventh │ │ ├── 13 │ │ │ ├── func_doit.c │ │ │ ├── func_doit.h │ │ │ ├── func_letsgo.c │ │ │ └── func_letsgo.h │ │ ├── 15 │ │ │ ├── return_int.c │ │ │ └── return_int.h │ │ ├── CMakeLists.txt │ │ ├── bitt.c │ │ ├── bitt.h │ │ ├── clangmun.c │ │ ├── clangmun.h │ │ ├── clangmun_func │ │ │ ├── int_array.c │ │ │ ├── int_array.h │ │ │ ├── int_para.c │ │ │ └── int_para.h │ │ ├── main.c │ │ ├── mul.c │ │ ├── mul.h │ │ ├── three │ │ │ ├── double_int.c │ │ │ ├── double_int.h │ │ │ ├── double_un.c │ │ │ └── double_un.h │ │ └── utility │ │ │ ├── random.c │ │ │ └── random.h │ ├── fifth │ │ ├── fifth.sln │ │ └── fifth │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── dice.c │ │ │ ├── dice.h │ │ │ ├── fifth.vcxproj │ │ │ ├── fifth.vcxproj.filters │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── main.c │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── first │ │ ├── first.sln │ │ └── first │ │ │ ├── first.c │ │ │ ├── first.vcxproj │ │ │ ├── first.vcxproj.filters │ │ │ ├── four.c │ │ │ ├── four.h │ │ │ ├── second.c │ │ │ ├── second.h │ │ │ ├── third.c │ │ │ └── third.h │ ├── fourth │ │ ├── fourth.sln │ │ └── fourth │ │ │ ├── dice_game.c │ │ │ ├── dice_game.h │ │ │ ├── fourth.vcxproj │ │ │ ├── fourth.vcxproj.filters │ │ │ ├── main.c │ │ │ ├── malloc_test.c │ │ │ ├── malloc_test.h │ │ │ ├── player.c │ │ │ ├── player.h │ │ │ ├── random_generator.c │ │ │ ├── random_generator.h │ │ │ ├── win.c │ │ │ └── win.h │ ├── homework │ │ ├── 231101 어셈블리.pdf │ │ ├── dice_game │ │ │ ├── dice_game.sln │ │ │ └── dice_game │ │ │ │ ├── battle.c │ │ │ │ ├── battle.h │ │ │ │ ├── dice.c │ │ │ │ ├── dice.h │ │ │ │ ├── dice_game.vcxproj │ │ │ │ ├── dice_game.vcxproj.filters │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random_generator.c │ │ │ │ └── random_generator.h │ │ ├── dice_game_v2 │ │ │ ├── dice_game_v2.sln │ │ │ └── dice_game_v2 │ │ │ │ ├── dice_game.c │ │ │ │ ├── dice_game.h │ │ │ │ ├── dice_game_v2.vcxproj │ │ │ │ ├── dice_game_v2.vcxproj.filters │ │ │ │ ├── dice_skill.c │ │ │ │ ├── dice_skill.h │ │ │ │ ├── main.c │ │ │ │ ├── player.c │ │ │ │ ├── player.h │ │ │ │ ├── random_generator.c │ │ │ │ ├── random_generator.h │ │ │ │ ├── result.c │ │ │ │ └── result.h │ │ └── vecter_first │ │ │ ├── CMakeLists.txt │ │ │ ├── main.c │ │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ │ └── vector │ │ │ ├── vectors.c │ │ │ └── vectors.h │ ├── nineth │ │ ├── CMakeLists.txt │ │ ├── main │ │ └── main.c │ ├── prepare.txt │ ├── second │ │ ├── second.sln │ │ └── second │ │ │ ├── main.c │ │ │ ├── second.vcxproj │ │ │ └── second.vcxproj.filters │ ├── seventh │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ └── tasks.json │ │ ├── CMakeLists.txt │ │ ├── account │ │ │ └── entity │ │ │ │ ├── account.c │ │ │ │ ├── account.h │ │ │ │ ├── account_manager.c │ │ │ │ └── account_manager.h │ │ ├── led │ │ │ └── entity │ │ │ │ ├── led.c │ │ │ │ └── led.h │ │ └── main.c │ ├── tenth │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── utility │ │ │ ├── random.c │ │ │ └── random.h │ │ └── vector │ │ │ ├── adapter │ │ │ ├── in │ │ │ │ └── api │ │ │ │ │ ├── random_operation │ │ │ │ │ ├── vector_random_operation_math_api_command_handler.c │ │ │ │ │ └── vector_random_operation_math_api_command_handler.h │ │ │ │ │ ├── request │ │ │ │ │ ├── vector_operation_request.c │ │ │ │ │ └── vector_operation_request.h │ │ │ │ │ ├── response │ │ │ │ │ ├── vector_random_operation_response.c │ │ │ │ │ └── vector_random_operation_response.h │ │ │ │ │ ├── vector_math_api_command.h │ │ │ │ │ ├── vector_math_api_command_table.c │ │ │ │ │ ├── vector_math_api_command_table.h │ │ │ │ │ └── vector_math_api_command_table_mapper.h │ │ │ └── out │ │ │ │ └── in_memory │ │ │ │ ├── data │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ │ ├── store │ │ │ │ ├── vector_store_in_memory_command_handler.c │ │ │ │ └── vector_store_in_memory_command_handler.h │ │ │ │ ├── vector_in_memory_command.h │ │ │ │ ├── vector_in_memory_command_table.c │ │ │ │ ├── vector_in_memory_command_table.h │ │ │ │ └── vector_in_memory_command_table_mapper.h │ │ │ ├── application │ │ │ └── services │ │ │ │ ├── add │ │ │ │ ├── vector_add_service_command_handler.c │ │ │ │ └── vector_add_service_command_handler.h │ │ │ │ ├── sub │ │ │ │ ├── vector_sub_service_command_handler.c │ │ │ │ └── vector_sub_service_command_handler.h │ │ │ │ ├── vector_service_command.h │ │ │ │ ├── vector_service_command_table.c │ │ │ │ ├── vector_service_command_table.h │ │ │ │ └── vector_service_command_table_mapper.h │ │ │ └── domain │ │ │ └── model │ │ │ ├── vector_model.c │ │ │ └── vector_model.h │ └── thrid │ │ ├── thrid.sln │ │ └── thrid │ │ ├── dice.c │ │ ├── dice.h │ │ ├── dice_game.c │ │ ├── dice_game.h │ │ ├── main.c │ │ ├── player.c │ │ ├── player.h │ │ ├── print_even.c │ │ ├── print_even.h │ │ ├── print_even_advanced.c │ │ ├── print_even_advanced.h │ │ ├── print_random.c │ │ ├── print_random.h │ │ ├── random_generator.c │ │ ├── random_generator.h │ │ ├── thrid.vcxproj │ │ └── thrid.vcxproj.filters └── yunchanshin │ └── homework │ └── 2 │ ├── prepare.txt │ └── 어셈블리분석.pdf ├── python ├── byunsangheum │ └── prepare.txt ├── hyoungjunlee │ ├── answerProcess │ │ ├── account │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── AccountRepository.py │ │ │ │ ├── AccountRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── AccountService.py │ │ │ │ ├── AccountServiceImpl.py │ │ │ │ ├── __init__.py │ │ │ │ ├── request │ │ │ │ ├── AccountRegisterRequest.py │ │ │ │ └── __init__.py │ │ │ │ └── response │ │ │ │ ├── AccountRegisterResponse.py │ │ │ │ └── __init__.py │ │ ├── authentication │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLDatabase.py │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── account │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestAccountRepository.py │ │ │ │ │ └── __init__.py │ │ │ ├── parsing │ │ │ │ ├── TestParsing.py │ │ │ │ └── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ ├── answerUI │ │ ├── account_form │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── AccountFormRepository.py │ │ │ │ ├── AccountFormRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── client_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ClientSocketRepository.py │ │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ClientSocketService.py │ │ │ │ ├── ClientSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── console_printer │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── ConsolePrinterRepository.py │ │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── console_ui │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ConsoleUiRoutingState.py │ │ │ │ ├── ConsoleUiState.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ConsoleUiRepository.py │ │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ConsoleUiService.py │ │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── custom_protocol │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ │ └── __init__.py │ │ │ └── utility │ │ │ │ ├── __init__.py │ │ │ │ └── keyboard │ │ │ │ ├── TestKeyboardInput.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── KeyboardInput.py │ │ │ └── __init__.py │ ├── first │ │ ├── account │ │ │ ├── __init__.py │ │ │ └── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ └── main.py │ ├── prepare.txt │ ├── second │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ └── thirdUI │ │ ├── client_socket │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ClientSocket.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ClientSocketRepository.py │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ClientSocketService.py │ │ │ ├── ClientSocketServiceImpl.py │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── ReceiverRepository.py │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ ├── task_manage │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── TaskEntity.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── TaskManageRepository.py │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── TaskManageService.py │ │ │ ├── TaskManageServiceImpl.py │ │ │ └── __init__.py │ │ └── transmitter │ │ ├── __init__.py │ │ ├── repository │ │ ├── TransmitterRepository.py │ │ ├── TransmitterRepositoryImpl.py │ │ └── __init__.py │ │ └── service │ │ └── __init__.py ├── jaelimlee │ ├── answerProcess │ │ ├── account │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── AccountRepository.py │ │ │ │ ├── AccountRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── AccountService.py │ │ │ │ ├── AccountServiceImpl.py │ │ │ │ ├── __init__.py │ │ │ │ ├── request │ │ │ │ ├── AccountRegisterRequest.py │ │ │ │ └── __init__.py │ │ │ │ └── response │ │ │ │ ├── AccountRegisterResponse.py │ │ │ │ └── __init__.py │ │ ├── authentication │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLDatabase.py │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── account │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestAccountRepository.py │ │ │ │ │ └── __init__.py │ │ │ ├── parsing │ │ │ │ ├── TestParsing.py │ │ │ │ └── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ ├── answerUI │ │ ├── account_form │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── AccountFormRepository.py │ │ │ │ ├── AccountFormRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── client_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ClientSocketRepository.py │ │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ClientSocketService.py │ │ │ │ ├── ClientSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── console_printer │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── ConsolePrinterRepository.py │ │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── console_ui │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ConsoleUiRoutingState.py │ │ │ │ ├── ConsoleUiState.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ConsoleUiRepository.py │ │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ConsoleUiService.py │ │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── custom_protocol │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ │ └── __init__.py │ │ │ └── utility │ │ │ │ ├── __init__.py │ │ │ │ └── keyboard │ │ │ │ ├── TestKeyboardInput.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── KeyboardInput.py │ │ │ └── __init__.py │ ├── first │ │ ├── account │ │ │ ├── __init__.py │ │ │ └── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ └── main.py │ ├── prepare.txt │ ├── second │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ └── thirdUI │ │ ├── .env │ │ ├── client_socket │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ClientSocket.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ClientSocketRepository.py │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ClientSocketService.py │ │ │ ├── ClientSocketServiceImpl.py │ │ │ └── __init__.py │ │ ├── console_printer │ │ ├── __init__.py │ │ └── repository │ │ │ ├── ConsolePrinterRepository.py │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ └── __init__.py │ │ ├── console_ui │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ConsoleUiRoutingState.py │ │ │ ├── ConsoleUiState.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ConsoleUiRepository.py │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ConsoleUiService.py │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── CustomProtocolRepository.py │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── CustomProtocolService.py │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── ReceiverRepository.py │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ ├── task_manage │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── TaskEntity.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── TaskManageRepository.py │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── TaskManageService.py │ │ │ ├── TaskManageServiceImpl.py │ │ │ └── __init__.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── TestKeyboardInput.py │ │ │ └── __init__.py │ │ ├── transmitter │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── TransmitterRepository.py │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ └── utility │ │ ├── __init__.py │ │ └── keyboard │ │ ├── KeyboardInput.py │ │ └── __init__.py ├── jaeseunglee │ ├── first │ │ ├── account │ │ │ ├── __init__.py │ │ │ └── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ └── main.py │ ├── prepare.txt │ ├── second │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ └── third │ │ ├── client_socket │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ClientSocket.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ClientSocketRepository.py │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ClientSocketService.py │ │ │ ├── ClientSocketServiceImpl.py │ │ │ └── __init__.py │ │ ├── console_printer │ │ ├── __init__.py │ │ └── repository │ │ │ ├── ConsolePrinterRepository.py │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ └── __init__.py │ │ ├── console_ui │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ConsoleUiRoutingState.py │ │ │ ├── ConsoleUiState.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ConsoleUiRepository.py │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ConsoleUiService.py │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── CustomProtocolRepository.py │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── CustomProtocolService.py │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── ReceiverRepository.py │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ ├── task_manage │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── TaskEntity.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── TaskManageRepository.py │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── TaskManageService.py │ │ │ ├── TaskManageServiceImpl.py │ │ │ └── __init__.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── TestKeyboardInput.py │ │ │ └── __init__.py │ │ ├── transmitter │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── TransmitterRepository.py │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ └── utility │ │ ├── __init__.py │ │ └── keyboard │ │ ├── KeyboardInput.py │ │ └── __init__.py ├── janghunpark │ ├── desktop setting │ ├── first │ │ ├── account │ │ │ ├── __init__.py │ │ │ └── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ ├── class_practice │ │ │ ├── Student.py │ │ │ └── __init__.py │ │ └── main.py │ ├── fourth │ │ └── test_notebook.ipynb │ ├── lecture_clone │ │ ├── answerProcess │ │ │ ├── account │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ │ ├── Account.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ │ ├── AccountRepository.py │ │ │ │ │ ├── AccountRepositoryImpl.py │ │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ │ ├── AccountService.py │ │ │ │ │ ├── AccountServiceImpl.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── request │ │ │ │ │ ├── AccountRegisterRequest.py │ │ │ │ │ └── __init__.py │ │ │ │ │ └── response │ │ │ │ │ ├── AccountRegisterResponse.py │ │ │ │ │ └── __init__.py │ │ │ ├── authentication │ │ │ │ ├── __init__.py │ │ │ │ ├── repository │ │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ │ └── __init__.py │ │ │ ├── custom_protocol │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ │ ├── CustomProtocol.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ │ ├── CustomProtocolService.py │ │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ │ └── __init__.py │ │ │ ├── main.py │ │ │ ├── mysql │ │ │ │ ├── MySQLDatabase.py │ │ │ │ ├── MySQLProcess.py │ │ │ │ └── __init__.py │ │ │ ├── receiver │ │ │ │ ├── __init__.py │ │ │ │ ├── repository │ │ │ │ │ ├── ReceiverRepository.py │ │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ │ └── __init__.py │ │ │ ├── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ │ ├── ClientSocket.py │ │ │ │ │ ├── ServerSocket.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ │ ├── ServerSocketService.py │ │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ │ └── __init__.py │ │ │ ├── task_manage │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ │ ├── TaskEntity.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ │ ├── TaskManageRepository.py │ │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ │ ├── TaskManageService.py │ │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ │ └── __init__.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── account │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── repository │ │ │ │ │ │ ├── TestAccountRepository.py │ │ │ │ │ │ └── __init__.py │ │ │ │ └── server_socket │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── entity │ │ │ │ │ ├── TestServerSocket.py │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── repository │ │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ │ └── __init__.py │ │ │ │ │ └── service │ │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ │ └── __init__.py │ │ │ ├── transmitter │ │ │ │ ├── __init__.py │ │ │ │ ├── repository │ │ │ │ │ ├── TransmitterRepository.py │ │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ │ └── __init__.py │ │ │ └── utility │ │ │ │ ├── IPAddressBindSupporter.py │ │ │ │ └── __init__.py │ │ └── answerUI │ │ │ ├── account_form │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── AccountFormRepository.py │ │ │ │ ├── AccountFormRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ ├── client_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ClientSocketRepository.py │ │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ClientSocketService.py │ │ │ │ ├── ClientSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ │ ├── console_printer │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── ConsolePrinterRepository.py │ │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ ├── console_ui │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ConsoleUiRoutingState.py │ │ │ │ ├── ConsoleUiState.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ConsoleUiRepository.py │ │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ConsoleUiService.py │ │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ │ └── __init__.py │ │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ │ ├── main.py │ │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── custom_protocol │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ │ └── __init__.py │ │ │ └── utility │ │ │ │ ├── __init__.py │ │ │ │ └── keyboard │ │ │ │ ├── TestKeyboardInput.py │ │ │ │ └── __init__.py │ │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── KeyboardInput.py │ │ │ └── __init__.py │ ├── prepare.txt │ ├── python lecture note │ ├── second │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ └── third_ui │ │ ├── client_socket │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ClientSocket.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ClientSocketRepository.py │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ClientSocketService.py │ │ │ ├── ClientSocketServiceImpl.py │ │ │ └── __init__.py │ │ ├── console_printer │ │ ├── __init__.py │ │ └── repository │ │ │ ├── ConsolePrinterRepository.py │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ └── __init__.py │ │ ├── console_ui │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ConsoleUiRoutingState.py │ │ │ ├── ConsoleUiState.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ConsoleUiRepository.py │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ConsoleUiService.py │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── CustomProtocolRepository.py │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── CustomProtocolService.py │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── ReceiverRepository.py │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ ├── task_manage │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── TaskEntity.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── TaskManageRepository.py │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── TaskManageService.py │ │ │ ├── TaskManageServiceImpl.py │ │ │ └── __init__.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── TestKeyboardInput.py │ │ │ └── __init__.py │ │ ├── transmitter │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── TransmitterRepository.py │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ └── utility │ │ ├── __init__.py │ │ └── keyboard │ │ ├── KeyboardInput.py │ │ └── __init__.py ├── junghunwoo │ ├── first │ │ ├── account │ │ │ ├── __init__.py │ │ │ └── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ └── main.py │ ├── prepare.txt │ ├── second │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ └── thirdUI │ │ ├── client_socket │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ClientSocket.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ClientSocketRepository.py │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ClientSocketService.py │ │ │ ├── ClientSocketServiceImpl.py │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── ReceiverRepository.py │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ ├── task_manage │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── TaskEntity.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── TaskManageRepository.py │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── TaskManageService.py │ │ │ ├── TaskManageServiceImpl.py │ │ │ └── __init__.py │ │ └── transmitter │ │ ├── __init__.py │ │ ├── repository │ │ ├── TransmitterRepository.py │ │ ├── TransmitterRepositoryImpl.py │ │ └── __init__.py │ │ └── service │ │ └── __init__.py ├── junghwancho │ ├── first │ │ └── main.py │ └── prepare.txt ├── junyeonkim │ └── prepare.txt ├── lecture │ ├── README.md │ ├── answerProcess │ │ ├── account │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── Account.py │ │ │ │ ├── Session.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── AccountRepository.py │ │ │ │ ├── AccountRepositoryImpl.py │ │ │ │ ├── SessionRepository.py │ │ │ │ ├── SessionRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── AccountService.py │ │ │ │ ├── AccountServiceImpl.py │ │ │ │ ├── __init__.py │ │ │ │ ├── request │ │ │ │ ├── AccountDeleteRequest.py │ │ │ │ ├── AccountLoginRequest.py │ │ │ │ ├── AccountLogoutRequest.py │ │ │ │ ├── AccountRegisterRequest.py │ │ │ │ └── __init__.py │ │ │ │ └── response │ │ │ │ ├── AccountDeleteResponse.py │ │ │ │ ├── AccountLoginResponse.py │ │ │ │ ├── AccountLogoutResponse.py │ │ │ │ ├── AccountRegisterResponse.py │ │ │ │ └── __init__.py │ │ ├── authentication │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLDatabase.py │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── order │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── Order.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── OrderRepository.py │ │ │ │ ├── OrderRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── OrderService.py │ │ │ │ ├── OrderServiceImpl.py │ │ │ │ ├── __init__.py │ │ │ │ ├── request │ │ │ │ ├── OrderListRequest.py │ │ │ │ ├── OrderRegisterRequest.py │ │ │ │ └── __init__.py │ │ │ │ └── response │ │ │ │ ├── OrderListResponse.py │ │ │ │ ├── OrderRegisterResponse.py │ │ │ │ └── __init__.py │ │ ├── product │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── Product.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ProductRepository.py │ │ │ │ ├── ProductRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ProductService.py │ │ │ │ ├── ProductServiceImpl.py │ │ │ │ ├── __init__.py │ │ │ │ ├── request │ │ │ │ ├── ProductDeleteRequest.py │ │ │ │ ├── ProductReadRequest.py │ │ │ │ ├── ProductRegisterRequest.py │ │ │ │ ├── ProductSearchRequest.py │ │ │ │ ├── ProductUpdateRequest.py │ │ │ │ └── __init__.py │ │ │ │ └── response │ │ │ │ ├── ProductDeleteResponse.py │ │ │ │ ├── ProductListResponse.py │ │ │ │ ├── ProductReadResponse.py │ │ │ │ ├── ProductRegisterResponse.py │ │ │ │ ├── ProductUpdateResponse.py │ │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── request_generator │ │ │ ├── __init__.py │ │ │ └── service │ │ │ │ ├── RequestGeneratorService.py │ │ │ │ ├── RequestGeneratorServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── account │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestAccountRepository.py │ │ │ │ │ └── __init__.py │ │ │ ├── order │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestOrderRepository.py │ │ │ │ │ └── __init__.py │ │ │ ├── parsing │ │ │ │ ├── TestParsing.py │ │ │ │ └── __init__.py │ │ │ ├── product │ │ │ │ ├── TestUglyProduct.py │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ │ ├── TestProductEntity.py │ │ │ │ │ └── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestProductRepository.py │ │ │ │ │ └── __init__.py │ │ │ ├── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ │ ├── TestServerSocket.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ │ └── __init__.py │ │ │ └── ugly │ │ │ │ ├── JustForUglyTest.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ ├── answerUI │ │ ├── account │ │ │ ├── __init__.py │ │ │ └── service │ │ │ │ ├── __init__.py │ │ │ │ └── response │ │ │ │ ├── AccountDeleteResponse.py │ │ │ │ ├── AccountLoginResponse.py │ │ │ │ ├── AccountLogoutResponse.py │ │ │ │ ├── AccountRegisterResponse.py │ │ │ │ └── __init__.py │ │ ├── account_form │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── AccountFormRepository.py │ │ │ │ ├── AccountFormRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── client_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ClientSocketRepository.py │ │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ClientSocketService.py │ │ │ │ ├── ClientSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── console_printer │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── ConsolePrinterRepository.py │ │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── console_ui │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ConsoleUiRoutingState.py │ │ │ │ ├── ConsoleUiState.py │ │ │ │ ├── Session.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ConsoleUiRepository.py │ │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ConsoleUiService.py │ │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── localStorage │ │ │ └── README.md │ │ ├── main.py │ │ ├── order │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── OrderFormRepository.py │ │ │ │ ├── OrderFormRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── __init__.py │ │ │ │ └── response │ │ │ │ ├── OrderListResponse.py │ │ │ │ ├── OrderRegisterResponse.py │ │ │ │ └── __init__.py │ │ ├── product │ │ │ ├── __init__.py │ │ │ └── service │ │ │ │ ├── __init__.py │ │ │ │ └── response │ │ │ │ ├── ProductDeleteResponse.py │ │ │ │ ├── ProductListResponse.py │ │ │ │ ├── ProductReadResponse.py │ │ │ │ ├── ProductRegisterResponse.py │ │ │ │ ├── ProductUpdateResponse.py │ │ │ │ └── __init__.py │ │ ├── product_form │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── ProductFormRepository.py │ │ │ │ ├── ProductFormRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── program │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ProgramRepository.py │ │ │ │ ├── ProgramRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── __init__.py │ │ │ │ └── response │ │ │ │ ├── ProgramExitResponse.py │ │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── request_generator │ │ │ ├── __init__.py │ │ │ └── service │ │ │ │ ├── RequestGeneratorService.py │ │ │ │ ├── RequestGeneratorServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── response_generator │ │ │ ├── __init__.py │ │ │ └── service │ │ │ │ ├── ResponseGeneratorService.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── custom_protocol │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ │ └── __init__.py │ │ │ ├── ugly │ │ │ │ ├── TestUglyCode.py │ │ │ │ └── __init__.py │ │ │ └── utility │ │ │ │ ├── __init__.py │ │ │ │ └── keyboard │ │ │ │ ├── TestKeyboardInput.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── KeyboardInput.py │ │ │ └── __init__.py │ ├── first.ipynb │ ├── first │ │ ├── account │ │ │ ├── __init__.py │ │ │ └── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ └── main.py │ ├── second.ipynb │ ├── second │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ ├── third.ipynb │ └── thirdUI │ │ ├── client_socket │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ClientSocket.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ClientSocketRepository.py │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ClientSocketService.py │ │ │ ├── ClientSocketServiceImpl.py │ │ │ └── __init__.py │ │ ├── console_printer │ │ ├── __init__.py │ │ └── repository │ │ │ ├── ConsolePrinterRepository.py │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ └── __init__.py │ │ ├── console_ui │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ConsoleUiRoutingState.py │ │ │ ├── ConsoleUiState.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ConsoleUiRepository.py │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ConsoleUiService.py │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── CustomProtocolRepository.py │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── CustomProtocolService.py │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── ReceiverRepository.py │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ ├── task_manage │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── TaskEntity.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── TaskManageRepository.py │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── TaskManageService.py │ │ │ ├── TaskManageServiceImpl.py │ │ │ └── __init__.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── TestKeyboardInput.py │ │ │ └── __init__.py │ │ ├── transmitter │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── TransmitterRepository.py │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ └── utility │ │ ├── __init__.py │ │ └── keyboard │ │ ├── KeyboardInput.py │ │ └── __init__.py ├── sanggunyoun │ ├── answerProcess │ │ ├── account │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── AccountRepository.py │ │ │ │ ├── AccountRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── AccountService.py │ │ │ │ ├── AccountServiceImpl.py │ │ │ │ ├── __init__.py │ │ │ │ ├── request │ │ │ │ ├── AccountRegisterRequest.py │ │ │ │ └── __init__.py │ │ │ │ └── response │ │ │ │ ├── AccountRegisterResponse.py │ │ │ │ └── __init__.py │ │ ├── authentication │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLDatabase.py │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── account │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestAccountRepository.py │ │ │ │ │ └── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ ├── answerUI │ │ ├── account_form │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── AccountFormRepository.py │ │ │ │ ├── AccountFormRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── client_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ClientSocketRepository.py │ │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ClientSocketService.py │ │ │ │ ├── ClientSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── console_printer │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── ConsolePrinterRepository.py │ │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── console_ui │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ConsoleUiRoutingState.py │ │ │ │ ├── ConsoleUiState.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ConsoleUiRepository.py │ │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ConsoleUiService.py │ │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── custom_protocol │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ │ └── __init__.py │ │ │ └── utility │ │ │ │ ├── __init__.py │ │ │ │ └── keyboard │ │ │ │ ├── TestKeyboardInput.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── KeyboardInput.py │ │ │ └── __init__.py │ ├── first │ │ └── test │ │ │ ├── account │ │ │ ├── __init__.py │ │ │ └── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ │ └── main.py │ ├── mouse │ │ └── main.py │ ├── prepare.txt │ ├── second │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── server_socket │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ └── thirdUI │ │ ├── client_socket │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ClientSocket.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ClientSocketRepository.py │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ClientSocketService.py │ │ │ ├── ClientSocketServiceImpl.py │ │ │ └── __init__.py │ │ ├── console_printer │ │ ├── __init__.py │ │ └── repository │ │ │ ├── ConsolePrinterRepository.py │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ └── __init__.py │ │ ├── console_ui │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ConsoleUiRoutingState.py │ │ │ ├── ConsoleUiState.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ConsoleUiRepository.py │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ConsoleUiService.py │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── CustomProtocolRepository.py │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── CustomProtocolService.py │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── ReceiverRepository.py │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ ├── task_manage │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── TaskEntity.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── TaskManageRepository.py │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── TaskManageService.py │ │ │ ├── TaskManageServiceImpl.py │ │ │ └── __init__.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── TestKeyboardInput.py │ │ │ └── __init__.py │ │ ├── transmitter │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── TransmitterRepository.py │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ └── utility │ │ ├── __init__.py │ │ └── keyboard │ │ ├── KeyboardInput.py │ │ └── __init__.py ├── seunghunjo │ ├── first │ │ ├── account │ │ │ ├── __init__.py │ │ │ └── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ └── main.py │ ├── prepare.txt │ ├── second │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ └── thirdUI │ │ ├── client_socket │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ClientSocket.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ClientSocketRepository.py │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ClientSocketService.py │ │ │ ├── ClientSocketServiceImpl.py │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── ReceiverRepository.py │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ ├── task_manage │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── TaskEntity.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── TaskManageRepository.py │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── TaskManageService.py │ │ │ ├── TaskManageServiceImpl.py │ │ │ └── __init__.py │ │ └── transmitter │ │ ├── __init__.py │ │ ├── repository │ │ ├── TransmitterRepository.py │ │ ├── TransmitterRepositoryImpl.py │ │ └── __init__.py │ │ └── service │ │ └── __init__.py ├── sunghwanpark │ └── prepare.txt ├── sungyonglee │ ├── answerProcess │ │ ├── account │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── AccountRepository.py │ │ │ │ ├── AccountRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── AccountService.py │ │ │ │ ├── AccountServiceImpl.py │ │ │ │ ├── __init__.py │ │ │ │ ├── request │ │ │ │ ├── AccountRegisterRequest.py │ │ │ │ └── __init__.py │ │ │ │ └── response │ │ │ │ ├── AccountRegisterResponse.py │ │ │ │ └── __init__.py │ │ ├── authentication │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLDatabase.py │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── account │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestAccountRepository.py │ │ │ │ │ └── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ ├── answerUI │ │ ├── account_form │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── AccountFormRepository.py │ │ │ │ ├── AccountFormRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── client_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ClientSocketRepository.py │ │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ClientSocketService.py │ │ │ │ ├── ClientSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── console_printer │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── ConsolePrinterRepository.py │ │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── console_ui │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ConsoleUiRoutingState.py │ │ │ │ ├── ConsoleUiState.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ConsoleUiRepository.py │ │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ConsoleUiService.py │ │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── custom_protocol │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ │ └── __init__.py │ │ │ └── utility │ │ │ │ ├── __init__.py │ │ │ │ └── keyboard │ │ │ │ ├── TestKeyboardInput.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── KeyboardInput.py │ │ │ └── __init__.py │ ├── prepare.txt │ ├── second │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ └── thirdUI │ │ ├── client_socket │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ClientSocket.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ClientSocketRepository.py │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ClientSocketService.py │ │ │ ├── ClientSocketServiceImpl.py │ │ │ └── __init__.py │ │ ├── console_printer │ │ ├── __init__.py │ │ └── repository │ │ │ ├── ConsolePrinterRepository.py │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ └── __init__.py │ │ ├── console_ui │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ConsoleUiRoutingState.py │ │ │ ├── ConsoleUiState.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ConsoleUiRepository.py │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ConsoleUiService.py │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── CustomProtocolRepository.py │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── CustomProtocolService.py │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── ReceiverRepository.py │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ ├── task_manage │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── TaskEntity.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── TaskManageRepository.py │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── TaskManageService.py │ │ │ ├── TaskManageServiceImpl.py │ │ │ └── __init__.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── TestKeyboardInput.py │ │ │ └── __init__.py │ │ ├── transmitter │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── TransmitterRepository.py │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ └── utility │ │ ├── __init__.py │ │ └── keyboard │ │ ├── KeyboardInput.py │ │ └── __init__.py ├── sungyoungjang │ ├── answerProcess │ │ ├── account │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── Account.py │ │ │ │ ├── Session.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── AccountRepository.py │ │ │ │ ├── AccountRepositoryImpl.py │ │ │ │ ├── SessionRepository.py │ │ │ │ ├── SessionRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── AccountService.py │ │ │ │ ├── AccountServiceImpl.py │ │ │ │ ├── __init__.py │ │ │ │ ├── request │ │ │ │ ├── AccountDeleteRequest.py │ │ │ │ ├── AccountLoginRequest.py │ │ │ │ ├── AccountLogoutRequest.py │ │ │ │ ├── AccountRegisterRequest.py │ │ │ │ └── __init__.py │ │ │ │ └── response │ │ │ │ ├── AccountDeleteResponse.py │ │ │ │ ├── AccountLoginResponse.py │ │ │ │ ├── AccountLogoutResponse.py │ │ │ │ ├── AccountRegisterResponse.py │ │ │ │ └── __init__.py │ │ ├── authentication │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLDatabase.py │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── product │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── Product.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ProductRepository.py │ │ │ │ ├── ProductRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ProductService.py │ │ │ │ ├── ProductServiceImpl.py │ │ │ │ ├── __init__.py │ │ │ │ └── response │ │ │ │ ├── ProductListResponse.py │ │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── request_generator │ │ │ ├── __init__.py │ │ │ └── service │ │ │ │ ├── RequestGeneratorService.py │ │ │ │ ├── RequestGeneratorServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── account │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestAccountRepository.py │ │ │ │ │ └── __init__.py │ │ │ ├── parsing │ │ │ │ ├── TestParsing.py │ │ │ │ └── __init__.py │ │ │ ├── product │ │ │ │ ├── TestUglyProduct.py │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ │ ├── TestProductEntity.py │ │ │ │ │ └── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestProductRepository.py │ │ │ │ │ └── __init__.py │ │ │ ├── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ │ ├── TestServerSocket.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ │ └── __init__.py │ │ │ └── ugly │ │ │ │ ├── JustForUglyTest.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ ├── answerUI │ │ ├── account │ │ │ ├── __init__.py │ │ │ └── service │ │ │ │ ├── __init__.py │ │ │ │ └── response │ │ │ │ ├── AccountDeleteResponse.py │ │ │ │ ├── AccountLoginResponse.py │ │ │ │ ├── AccountLogoutResponse.py │ │ │ │ ├── AccountRegisterResponse.py │ │ │ │ └── __init__.py │ │ ├── account_form │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── AccountFormRepository.py │ │ │ │ ├── AccountFormRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── client_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ClientSocketRepository.py │ │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ClientSocketService.py │ │ │ │ ├── ClientSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── console_printer │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── ConsolePrinterRepository.py │ │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ ├── console_ui │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ConsoleUiRoutingState.py │ │ │ │ ├── ConsoleUiState.py │ │ │ │ ├── Session.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ConsoleUiRepository.py │ │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ConsoleUiService.py │ │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── CustomProtocol.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── CustomProtocolRepository.py │ │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── CustomProtocolService.py │ │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── localStorage │ │ │ └── README.md │ │ ├── main.py │ │ ├── product │ │ │ ├── __init__.py │ │ │ └── service │ │ │ │ ├── __init__.py │ │ │ │ └── response │ │ │ │ ├── ProductListResponse.py │ │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── request_generator │ │ │ ├── __init__.py │ │ │ └── service │ │ │ │ ├── RequestGeneratorService.py │ │ │ │ ├── RequestGeneratorServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── response_generator │ │ │ ├── __init__.py │ │ │ └── service │ │ │ │ ├── ResponseGeneratorService.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── custom_protocol │ │ │ │ ├── __init__.py │ │ │ │ └── repository │ │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ │ └── __init__.py │ │ │ ├── ugly │ │ │ │ ├── TestUglyCode.py │ │ │ │ └── __init__.py │ │ │ └── utility │ │ │ │ ├── __init__.py │ │ │ │ └── keyboard │ │ │ │ ├── TestKeyboardInput.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── KeyboardInput.py │ │ │ └── __init__.py │ ├── first │ │ ├── account │ │ │ ├── __init__.py │ │ │ └── entity │ │ │ │ ├── Account.py │ │ │ │ └── __init__.py │ │ └── main.py │ ├── prepare.txt │ ├── second │ │ ├── main.py │ │ ├── mysql │ │ │ ├── MySQLProcess.py │ │ │ └── __init__.py │ │ ├── receiver │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── ReceiverRepository.py │ │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ ├── server_socket │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── ClientSocket.py │ │ │ │ ├── ServerSocket.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── ServerSocketRepository.py │ │ │ │ ├── ServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── ServerSocketService.py │ │ │ │ ├── ServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── task_manage │ │ │ ├── __init__.py │ │ │ ├── entity │ │ │ │ ├── TaskEntity.py │ │ │ │ └── __init__.py │ │ │ ├── repository │ │ │ │ ├── TaskManageRepository.py │ │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ ├── TaskManageService.py │ │ │ │ ├── TaskManageServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── server_socket │ │ │ │ ├── __init__.py │ │ │ │ ├── entity │ │ │ │ ├── TestServerSocket.py │ │ │ │ └── __init__.py │ │ │ │ ├── repository │ │ │ │ ├── TestServerSocketRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ │ └── service │ │ │ │ ├── TestServerSocketServiceImpl.py │ │ │ │ └── __init__.py │ │ ├── transmitter │ │ │ ├── __init__.py │ │ │ ├── repository │ │ │ │ ├── TransmitterRepository.py │ │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ │ └── __init__.py │ │ │ └── service │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── IPAddressBindSupporter.py │ │ │ └── __init__.py │ └── thirdUI │ │ ├── client_socket │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ClientSocket.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── .goutputstream-95WKG2 │ │ │ ├── ClientSocketRepository.py │ │ │ ├── ClientSocketRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ClientSocketService.py │ │ │ ├── ClientSocketServiceImpl.py │ │ │ └── __init__.py │ │ ├── console_printer │ │ ├── __init__.py │ │ └── repository │ │ │ ├── ConsolePrinterRepository.py │ │ │ ├── ConsolePrinterRepositoryImpl.py │ │ │ └── __init__.py │ │ ├── console_ui │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── ConsoleUiRoutingState.py │ │ │ ├── ConsoleUiState.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── ConsoleUiRepository.py │ │ │ ├── ConsoleUiRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── ConsoleUiService.py │ │ │ ├── ConsoleUiServiceImpl.py │ │ │ └── __init__.py │ │ ├── custom_protocol │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── CustomProtocolRepository.py │ │ │ ├── CustomProtocolRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── CustomProtocolService.py │ │ │ ├── CustomProtocolServiceImpl.py │ │ │ └── __init__.py │ │ ├── main.py │ │ ├── receiver │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── ReceiverRepository.py │ │ │ ├── ReceiverRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ ├── task_manage │ │ ├── __init__.py │ │ ├── entity │ │ │ ├── TaskEntity.py │ │ │ └── __init__.py │ │ ├── repository │ │ │ ├── TaskManageRepository.py │ │ │ ├── TaskManageRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ ├── TaskManageService.py │ │ │ ├── TaskManageServiceImpl.py │ │ │ └── __init__.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── custom_protocol │ │ │ ├── __init__.py │ │ │ └── repository │ │ │ │ ├── TestCustomProtocolRepository.py │ │ │ │ └── __init__.py │ │ └── utility │ │ │ ├── __init__.py │ │ │ └── keyboard │ │ │ ├── TestKeyboardInput.py │ │ │ └── __init__.py │ │ ├── transmitter │ │ ├── __init__.py │ │ ├── repository │ │ │ ├── TransmitterRepository.py │ │ │ ├── TransmitterRepositoryImpl.py │ │ │ └── __init__.py │ │ └── service │ │ │ └── __init__.py │ │ └── utility │ │ ├── __init__.py │ │ └── keyboard │ │ ├── KeyboardInput.py │ │ └── __init__.py ├── yongsukchoi │ └── prepare.txt ├── youngchanhwang │ └── prepare.txt └── yunchanshin │ └── prepare.txt ├── rust ├── byunsangheum │ └── prepare.txt ├── hyoungjunlee │ └── prepare.txt ├── jaelimlee │ └── prepare.txt ├── jaeseunglee │ └── prepare.txt ├── janghunpark │ ├── personal_practice │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── prepare.txt │ └── pythonPractice │ │ ├── images │ │ ├── card1.png │ │ └── card2.png │ │ └── main.py ├── junghunwoo │ └── prepare.txt ├── junghwancho │ └── prepare.txt ├── junyeonkim │ └── prepare.txt ├── lecture │ └── prepare.txt ├── sanggunyoun │ └── prepare.txt ├── seunghunjo │ └── prepare.txt ├── sunghwanpark │ └── prepare.txt ├── sungyonglee │ └── prepare.txt ├── sungyoungjang │ └── prepare.txt ├── yongsukchoi │ └── prepare.txt ├── youngchanhwang │ └── prepare.txt └── yunchanshin │ └── prepare.txt └── useful_script ├── mc.sh ├── met.sh ├── mgc.sh └── user_mapper.sh /c++/byunsangheum/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/hyoungjunlee/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/jaelimlee/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/janghunpark/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/junghunwoo/class_test/board/insert/BoardInsert.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c++/junghunwoo/class_test/board/insert/BoardInsertmpl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c++/junghunwoo/class_test/board/insert/BoardInsertmpl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c++/junghunwoo/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/junghwancho/cpp_test/cmake-build-debug/.cmake/api/v1/query/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c++/junyeonkim/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/lecture/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/sanggunyoun/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/seunghunjo/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/sunghwanpark/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/sungyonglee/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/sungyoungjang/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/yongsukchoi/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/youngchanhwang/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c++/yunchanshin/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /c/byunsangheum/first/first/fourth.h: -------------------------------------------------------------------------------- 1 | void fourth_function(void); 2 | -------------------------------------------------------------------------------- /c/byunsangheum/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/hyoungjunlee/eleventh/13/doit.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/hyoungjunlee/eleventh/13/letsgo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/hyoungjunlee/eleventh/14/cmp_num.h: -------------------------------------------------------------------------------- 1 | void cmp_num(void); -------------------------------------------------------------------------------- /c/hyoungjunlee/eleventh/15/returntype.h: -------------------------------------------------------------------------------- 1 | int returntype(int a,float b); -------------------------------------------------------------------------------- /c/hyoungjunlee/eleventh/seperate_int.h: -------------------------------------------------------------------------------- 1 | void seperate_int(float a); -------------------------------------------------------------------------------- /c/hyoungjunlee/eleventh/seperate_other.h: -------------------------------------------------------------------------------- 1 | void seperate_other(float a); -------------------------------------------------------------------------------- /c/hyoungjunlee/fifth/fifth/fifth/dice.h: -------------------------------------------------------------------------------- 1 | int roll_dice(); 2 | -------------------------------------------------------------------------------- /c/hyoungjunlee/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/hyoungjunlee/thirteenth/created_file/이거만들래.txt: -------------------------------------------------------------------------------- 1 | 마 좀 치나 ? -------------------------------------------------------------------------------- /c/jaelimlee/fifth/fifth/dice.h: -------------------------------------------------------------------------------- 1 | int roll_dice(void); -------------------------------------------------------------------------------- /c/jaelimlee/first/first/fourth.h: -------------------------------------------------------------------------------- 1 | int fourth_function(void); -------------------------------------------------------------------------------- /c/jaelimlee/homework_5/vector/entity/vector.c: -------------------------------------------------------------------------------- 1 | #include "vector.h" -------------------------------------------------------------------------------- /c/jaelimlee/homework_5/vector/entity/vector.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/jaelimlee/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/jaelimlee/thirteenth/created_file/이거만들래.txt: -------------------------------------------------------------------------------- 1 | 마 좀 치나 ? -------------------------------------------------------------------------------- /c/jaeseunglee/first/first/fourth.h: -------------------------------------------------------------------------------- 1 | void fourth_function(int); 2 | -------------------------------------------------------------------------------- /c/jaeseunglee/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/jaeseunglee/thirteenth/created_file/이거만들래.txt: -------------------------------------------------------------------------------- 1 | 이거 쓸래 2 | -------------------------------------------------------------------------------- /c/janghunpark/0. homework/231102/dice/dice/main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/janghunpark/0. homework/231102/dice/dice/random_dice.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /c/janghunpark/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/janghunpark/dice/dice/main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/janghunpark/dice/dice/random_dice.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /c/janghunpark/first/first/forth.h: -------------------------------------------------------------------------------- 1 | void forth_function(void); 2 | -------------------------------------------------------------------------------- /c/janghunpark/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/janghunpark/third/third/print_random.h: -------------------------------------------------------------------------------- 1 | void print_random_number(int); -------------------------------------------------------------------------------- /c/janghunpark/thirteenth/created_file/format_test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/janghunpark/thirteenth/created_file/코딩빡시네.txt: -------------------------------------------------------------------------------- 1 | 마 좀 치나 ? -------------------------------------------------------------------------------- /c/junghunwoo/fifth/fifth/dice.h: -------------------------------------------------------------------------------- 1 | 2 | int roll_dice(void); -------------------------------------------------------------------------------- /c/junghunwoo/first/first/fourth.h: -------------------------------------------------------------------------------- 1 | void fourth_function(void); 2 | -------------------------------------------------------------------------------- /c/junghunwoo/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/junghunwoo/seventh/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /c/junghunwoo/test/test1114/14/test14.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/junghunwoo/test/test1114/14/test14.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/junghunwoo/test/test_grammar/11/grammar_elv.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/junghunwoo/test/test_grammar/11/grammar_elv.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/junghunwoo/test/test_grammar/8/grammar_eight.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/junghunwoo/third/third/random_dice.h: -------------------------------------------------------------------------------- 1 | void random_dice(const int); -------------------------------------------------------------------------------- /c/junghunwoo/thirteenth/created_file/이거만들래.txt: -------------------------------------------------------------------------------- 1 | 마 좀 치나 ? -------------------------------------------------------------------------------- /c/junghwancho/class/board/database/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/junghwancho/class/fifth_day/fifth_day/dice.h: -------------------------------------------------------------------------------- 1 | int roll_dice(void); -------------------------------------------------------------------------------- /c/junghwancho/class/test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/junghwancho/class/thirteenth/created_file/이거만들래.txt: -------------------------------------------------------------------------------- 1 | 마 좀 치나 ? -------------------------------------------------------------------------------- /c/junghwancho/homework/4th day/4th day/player.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /c/junghwancho/homework/first_week_work/first_week_work/commonc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/junghwancho/homework/first_week_work/first_week_work/commoon.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/junghwancho/practice/prob2_2/9/grammer_prob_ninth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/junghwancho/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/junyeonkim/fifth/fifth/dice.h: -------------------------------------------------------------------------------- 1 | int roll_dice(void); -------------------------------------------------------------------------------- /c/junyeonkim/first/first/fourth.h: -------------------------------------------------------------------------------- 1 | void fourth_function(void); -------------------------------------------------------------------------------- /c/junyeonkim/first/first/third.h: -------------------------------------------------------------------------------- 1 | int third_function(void); 2 | -------------------------------------------------------------------------------- /c/junyeonkim/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/lecture/board/database/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/lecture/fifth/fifth/dice.h: -------------------------------------------------------------------------------- 1 | int roll_dice(void); 2 | -------------------------------------------------------------------------------- /c/lecture/first/first/fourth.h: -------------------------------------------------------------------------------- 1 | void fourth_function(void); 2 | -------------------------------------------------------------------------------- /c/lecture/first/first/third.h: -------------------------------------------------------------------------------- 1 | int third_function(void); 2 | -------------------------------------------------------------------------------- /c/lecture/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/lecture/seventh/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /c/lecture/test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/lecture/thirteenth/created_file/이거만들래.txt: -------------------------------------------------------------------------------- 1 | 마 좀 치나 ? -------------------------------------------------------------------------------- /c/sanggunyoun/5day/5day_1/5day_1/dice.h: -------------------------------------------------------------------------------- 1 | int roll_dice(void); 2 | -------------------------------------------------------------------------------- /c/sanggunyoun/homework/4/homework_4/homework_4/dice.h: -------------------------------------------------------------------------------- 1 | int roll_dice(void); -------------------------------------------------------------------------------- /c/sanggunyoun/ninth/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sanggunyoun/ninth/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /c/sanggunyoun/ninth/player/entity/player.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sanggunyoun/ninth/player/entity/player.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sanggunyoun/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/sanggunyoun/test/test_5/random/print_random.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sanggunyoun/test/test_5/random/print_random.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sanggunyoun/test/test_5/random/random_generator.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sanggunyoun/test/test_5/random/random_generator.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sanggunyoun/third/third/FileName.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sanggunyoun/thirteenth/created_file/이거만들래.txt: -------------------------------------------------------------------------------- 1 | 마 좀 치나 ? -------------------------------------------------------------------------------- /c/seunghunjo/fifth/fifth/dice.h: -------------------------------------------------------------------------------- 1 | int roll_dice(void); -------------------------------------------------------------------------------- /c/seunghunjo/first/first/fourth.h: -------------------------------------------------------------------------------- 1 | void fourth_function(void); -------------------------------------------------------------------------------- /c/seunghunjo/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/seunghunjo/thirteenth/created_file/이거만들래.txt: -------------------------------------------------------------------------------- 1 | 마 좀 치나 ? -------------------------------------------------------------------------------- /c/sunghwanpark/fifth/fifth/dice.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | int roll_dice(void); -------------------------------------------------------------------------------- /c/sunghwanpark/first/first/fourth.h: -------------------------------------------------------------------------------- 1 | void fourth_function(void); -------------------------------------------------------------------------------- /c/sunghwanpark/grammer_problems/extra/i_wanna_return_float_random.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sunghwanpark/homework/Dice Game Pointer/Dice Game Pointer/dice.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sunghwanpark/homework/Dice Game Pointer/Dice Game Pointer/dice.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sunghwanpark/homework/Dice Game Pointer/Dice Game Pointer/player.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sunghwanpark/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/sunghwanpark/seventh/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /c/sunghwanpark/thirteenth/created_file/이거만들래.txt: -------------------------------------------------------------------------------- 1 | 마 좀 치나 ? -------------------------------------------------------------------------------- /c/sungyonglee/fifth/fifth/dice.h: -------------------------------------------------------------------------------- 1 | int roll_dice(void); 2 | 3 | -------------------------------------------------------------------------------- /c/sungyonglee/gtest_example/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /c/sungyonglee/gtest_example/CMakeFiles/run.dir/progress.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /c/sungyonglee/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/sungyonglee/team3board/board/adapter/in/api/board_api_command.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sungyonglee/team3board/board/adapter/in/api/board_api_command_table.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sungyonglee/team3board/board/adapter/in/api/board_api_command_table.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sungyonglee/team3board/board/domain/model/post_model.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sungyonglee/team3board/board/domain/model/post_model.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sungyonglee/thirteenth/created_file/이거만들래.txt: -------------------------------------------------------------------------------- 1 | 마 좀 치나 ? -------------------------------------------------------------------------------- /c/sungyoungjang/first/first/fourth.h: -------------------------------------------------------------------------------- 1 | void fourth_function(void); -------------------------------------------------------------------------------- /c/sungyoungjang/fourth/fourth/dice.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /c/sungyoungjang/homework/homework5_vector/result/entity/result.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sungyoungjang/homework/homework5_vector/result/entity/result.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sungyoungjang/homework/주사위게임_퀴즈풀이/주사위게임_퀴즈풀이/ddd.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/sungyoungjang/homework/주사위게임_퀴즈풀이/주사위게임_퀴즈풀이/dice.h: -------------------------------------------------------------------------------- 1 | int roll_dice(void); -------------------------------------------------------------------------------- /c/sungyoungjang/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/sungyoungjang/third/third/dice.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/yongsukchoi/Project1/Project1/dice_game.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /c/yongsukchoi/fifth/fifth/dice.h: -------------------------------------------------------------------------------- 1 | int roll_dice(); -------------------------------------------------------------------------------- /c/yongsukchoi/fifth/fifth/game.h: -------------------------------------------------------------------------------- 1 | void play_game(void); -------------------------------------------------------------------------------- /c/yongsukchoi/fisrt/fisrt/fourth.h: -------------------------------------------------------------------------------- 1 | int fourth_function(void); -------------------------------------------------------------------------------- /c/yongsukchoi/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/youngchanhwang/fifth/fifth/dice.h: -------------------------------------------------------------------------------- 1 | int roll_dice(void); 2 | -------------------------------------------------------------------------------- /c/youngchanhwang/first/first/four.h: -------------------------------------------------------------------------------- 1 | void fourth_function(void); 2 | -------------------------------------------------------------------------------- /c/youngchanhwang/first/first/third.h: -------------------------------------------------------------------------------- 1 | int third_function(void); 2 | -------------------------------------------------------------------------------- /c/youngchanhwang/prepare.txt: -------------------------------------------------------------------------------- 1 | just prepare 2 | -------------------------------------------------------------------------------- /c/youngchanhwang/thrid/thrid/dice.h: -------------------------------------------------------------------------------- 1 | int dice(); 2 | -------------------------------------------------------------------------------- /c/yunchanshin/homework/2/prepare.txt: -------------------------------------------------------------------------------- 1 | prepare 2 | -------------------------------------------------------------------------------- /python/byunsangheum/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/account/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/account/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/account/service/request/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/account/service/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/authentication/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/authentication/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/custom_protocol/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/tests/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/tests/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerProcess/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/account_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/account_form/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/custom_protocol/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/answerUI/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/first/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/first/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/tests/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/tests/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/second/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyoungjunlee/thirdUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/account/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/account/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/account/service/request/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/account/service/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/authentication/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/authentication/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/custom_protocol/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/tests/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/tests/account/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/tests/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerProcess/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/account_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/account_form/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/custom_protocol/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/answerUI/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/first/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/first/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/jaelimlee/second/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/tests/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/tests/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/tests/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/second/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaelimlee/thirdUI/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/first/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/first/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/tests/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/tests/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/tests/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/second/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jaeseunglee/third/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/first/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/first/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/first/class_practice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerProcess/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerProcess/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerProcess/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerProcess/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerProcess/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerUI/account_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerUI/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerUI/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerUI/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/lecture_clone/answerUI/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/janghunpark/second/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/tests/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/tests/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/tests/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/second/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/janghunpark/third_ui/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/first/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/first/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/junghunwoo/second/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/tests/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/tests/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/tests/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/second/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghunwoo/thirdUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/junghwancho/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/junyeonkim/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/account/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/account/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/account/service/request/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/account/service/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/authentication/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/authentication/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/custom_protocol/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/order/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/order/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/order/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/order/service/request/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/order/service/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/product/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/product/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/product/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/product/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/product/service/request/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/product/service/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/request_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/request_generator/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/account/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/order/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/product/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/product/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/product/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/tests/ugly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerProcess/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/account/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/account/service/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/account_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/account_form/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/custom_protocol/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/order/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/order/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/order/service/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/product/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/product/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/product/service/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/product_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/product_form/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/program/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/program/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/program/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/program/service/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/request_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/request_generator/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/response_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/response_generator/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/tests/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/tests/ugly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/answerUI/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/first/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/first/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/tests/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/tests/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/tests/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/second/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/tests/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/lecture/thirdUI/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/account/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/account/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/account/service/request/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/authentication/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/custom_protocol/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/tests/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerProcess/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/account_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/account_form/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/custom_protocol/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/answerUI/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/first/test/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/first/test/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/tests/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/tests/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/tests/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/second/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sanggunyoun/thirdUI/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/first/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/first/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/seunghunjo/second/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/tests/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/tests/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/tests/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/second/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/seunghunjo/thirdUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sunghwanpark/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/account/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/account/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/account/service/request/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/authentication/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/custom_protocol/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/tests/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerProcess/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/account_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/account_form/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/custom_protocol/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/answerUI/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/sungyonglee/second/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/tests/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/tests/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/tests/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/second/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyonglee/thirdUI/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/account/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/account/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/product/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/product/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/product/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/product/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/request_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/tests/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/tests/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/tests/product/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/tests/product/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/tests/ugly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerProcess/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/account/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/account/service/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/account_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/account_form/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/custom_protocol/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/product/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/product/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/product/service/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/request_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/request_generator/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/response_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/response_generator/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/tests/ugly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/answerUI/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/first/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/first/account/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/server_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/tests/server_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/tests/server_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/tests/server_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/second/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/client_socket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/client_socket/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/client_socket/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/client_socket/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/console_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/console_printer/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/console_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/console_ui/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/console_ui/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/console_ui/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/custom_protocol/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/custom_protocol/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/receiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/receiver/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/receiver/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/task_manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/task_manage/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/task_manage/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/task_manage/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/tests/custom_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/tests/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/tests/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/transmitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/transmitter/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/transmitter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sungyoungjang/thirdUI/utility/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/yongsukchoi/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/youngchanhwang/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /python/yunchanshin/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/byunsangheum/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/hyoungjunlee/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/jaelimlee/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/jaeseunglee/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/janghunpark/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/junghunwoo/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/junghwancho/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/junyeonkim/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/lecture/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/sanggunyoun/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/seunghunjo/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/sunghwanpark/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/sungyonglee/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/sungyoungjang/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/yongsukchoi/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/youngchanhwang/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | -------------------------------------------------------------------------------- /rust/yunchanshin/prepare.txt: -------------------------------------------------------------------------------- 1 | Prepare 2 | --------------------------------------------------------------------------------