├── .gitignore ├── .gitmodules ├── README.md ├── Semester1 ├── BasicsOfProfessionalActivity │ ├── Labwork1 │ │ ├── README.md │ │ ├── lab1.pdf │ │ └── lab1.sh │ └── Labwork2 │ │ ├── NewData.txt │ │ ├── README.md │ │ ├── lab2.pdf │ │ ├── orig.asm │ │ └── task.png ├── ComputerScience │ ├── Annotations │ │ ├── 11_10.pdf │ │ ├── 13_09.pdf │ │ ├── 22_11.pdf │ │ ├── 25_10.pdf │ │ ├── 27_09.pdf │ │ └── 8_11.pdf │ ├── Labwork1 │ │ └── lab1.pdf │ ├── Labwork2 │ │ └── lab2.pdf │ ├── Labwork3 │ │ ├── .gitignore │ │ ├── pytest.ini │ │ ├── regulars.py │ │ ├── requirements.txt │ │ └── tests │ │ │ ├── main_task │ │ │ ├── test_broken_emoticons.py │ │ │ ├── test_emoticons_with_noise.py │ │ │ ├── test_empty.py │ │ │ ├── test_many_emoticons.py │ │ │ └── test_one_emoticon.py │ │ │ ├── second_task │ │ │ ├── test_many_words.py │ │ │ ├── test_no_vt.py │ │ │ ├── test_no_words.py │ │ │ ├── test_one_word.py │ │ │ └── test_three_words.py │ │ │ └── third_task │ │ │ ├── test_floats.py │ │ │ ├── test_negative_numbers.py │ │ │ ├── test_no_numbers.py │ │ │ ├── test_numbers_in_text.py │ │ │ └── test_plus_expr.py │ ├── Labwork4 │ │ ├── .gitignore │ │ ├── bonus3_input.json │ │ ├── docs │ │ │ └── lab4.pdf │ │ ├── input.json │ │ └── tasks │ │ │ ├── __init__.py │ │ │ ├── bonus1 │ │ │ └── main.py │ │ │ ├── bonus2 │ │ │ ├── __init__.py │ │ │ ├── main.py │ │ │ ├── myjson │ │ │ │ └── __init__.py │ │ │ └── myxml │ │ │ │ └── __init__.py │ │ │ ├── bonus3 │ │ │ ├── __init__.py │ │ │ ├── main.py │ │ │ ├── myjson │ │ │ │ └── __init__.py │ │ │ └── myxml │ │ │ │ └── __init__.py │ │ │ ├── bonus4.py │ │ │ └── main │ │ │ ├── __init__.py │ │ │ ├── main.py │ │ │ ├── myjson │ │ │ └── __init__.py │ │ │ └── myxml │ │ │ └── __init__.py │ ├── Labwork5 │ │ ├── BonusTask2.xlsx │ │ ├── BonusTask3 │ │ │ ├── .gitignore │ │ │ ├── BonusTask.py │ │ │ ├── Data.csv │ │ │ └── requirements.txt │ │ ├── Input.csv │ │ └── MainTask.xlsm │ └── Labwork6 │ │ ├── .gitignore │ │ ├── build.sh │ │ ├── images │ │ ├── ITMO.png │ │ ├── Picture1.png │ │ ├── Picture2.png │ │ ├── Picture3.png │ │ └── Picture4.png │ │ └── src │ │ ├── Article.tex │ │ ├── Bonus.tex │ │ ├── Main.tex │ │ ├── Original.pdf │ │ └── Title.tex ├── DiscreteMaths │ ├── Coursework │ │ ├── Part1.pdf │ │ ├── Part1.tex │ │ ├── Part2.pdf │ │ ├── Part2.tex │ │ ├── Тимошкин_Роман_Курсовая_Работа_P3131_Часть1.pdf │ │ └── Тимошкин_Роман_Курсовая_Работа_P3131_Часть2.pdf │ └── Homework │ │ ├── Тимошкин_Роман_Домашняя_Работа_н1.pdf │ │ ├── Тимошкин_Роман_Домашняя_Работа_н2.pdf │ │ ├── Тимошкин_Роман_Домашняя_Работа_н3.pdf │ │ ├── Тимошкин_Роман_Домашняя_Работа_н4.pdf │ │ ├── Тимошкин_Роман_Домашняя_Работа_н5.pdf │ │ ├── Тимошкин_Роман_Домашняя_Работа_н6.pdf │ │ ├── Тимошкин_Роман_Домашняя_Работа_н7.pdf │ │ └── Тимошкин_Роман_Домашняя_Работа_н8.pdf ├── Programming │ ├── Labwork1 │ │ ├── Main.java │ │ ├── README.md │ │ ├── build.sh │ │ └── docs │ │ │ ├── 3rdTask.png │ │ │ └── lab1.pdf │ ├── Labwork2 │ │ ├── .gitignore │ │ ├── Pokemon.jar │ │ ├── README.md │ │ ├── dependency-reduced-pom.xml │ │ ├── diagram.plantuml │ │ ├── diagram.png │ │ ├── docs │ │ │ └── lab2.pdf │ │ ├── output.log │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── rmntim │ │ │ ├── Main.java │ │ │ ├── attacks │ │ │ ├── physical │ │ │ │ ├── DoubleKick.java │ │ │ │ ├── MegaPunch.java │ │ │ │ ├── ShadowPunch.java │ │ │ │ ├── TripleKick.java │ │ │ │ └── WingAttack.java │ │ │ ├── special │ │ │ │ ├── IceBeam.java │ │ │ │ └── ThunderShock.java │ │ │ └── status │ │ │ │ ├── Amnesia.java │ │ │ │ ├── LightScreen.java │ │ │ │ └── ThunderWave.java │ │ │ └── pokemons │ │ │ ├── Aggron.java │ │ │ ├── Charizard.java │ │ │ ├── Electabuzz.java │ │ │ ├── Joltik.java │ │ │ ├── Koffing.java │ │ │ └── Sneasel.java │ ├── Labwork3 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── docs │ │ │ ├── diagram.png │ │ │ └── lab3.pdf │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── rmntim │ │ │ ├── App.java │ │ │ ├── interfaces │ │ │ ├── CanOrder.java │ │ │ ├── Tellable.java │ │ │ └── Thinker.java │ │ │ └── models │ │ │ ├── actions │ │ │ ├── Action.java │ │ │ ├── GoAction.java │ │ │ └── TakeAction.java │ │ │ ├── common │ │ │ ├── CaseConverter.java │ │ │ ├── Communicator.java │ │ │ └── Order.java │ │ │ ├── people │ │ │ ├── Captain.java │ │ │ ├── Engineer.java │ │ │ ├── Group.java │ │ │ ├── Person.java │ │ │ ├── Sex.java │ │ │ └── Shorty.java │ │ │ └── story │ │ │ ├── Sentence.java │ │ │ └── Story.java │ └── Labwork4 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── docs │ │ ├── Diagram.png │ │ └── Report.pdf │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── rmntim │ │ ├── App.java │ │ ├── exceptions │ │ ├── EmptyStoryException.java │ │ ├── NoSuchMemberException.java │ │ └── NotEnoughSpaceException.java │ │ ├── interfaces │ │ ├── CanOrder.java │ │ ├── Plurable.java │ │ └── Thinker.java │ │ └── models │ │ ├── common │ │ ├── Action.java │ │ ├── CaseConverter.java │ │ ├── Communicator.java │ │ ├── Item.java │ │ ├── Order.java │ │ └── Wearable.java │ │ ├── people │ │ ├── Captain.java │ │ ├── Group.java │ │ ├── Person.java │ │ └── Sex.java │ │ └── story │ │ └── Story.java └── ReformsAndReformersInRussianHistory │ ├── Essay │ ├── Essay.pdf │ └── EssayUniqueness.png │ └── Report │ ├── Presentation.pptx │ └── Text.md ├── Semester2 ├── BasicsOfProfessionalActivity │ ├── DiffTest.pdf │ ├── Labwork3 │ │ ├── README.md │ │ ├── bitwidth.asm │ │ ├── docs │ │ │ └── Report.pdf │ │ ├── main.asm │ │ └── task.png │ ├── Labwork4 │ │ ├── README.md │ │ ├── divmul.asm │ │ ├── docs │ │ │ └── Report.pdf │ │ ├── main.asm │ │ └── task.png │ ├── Labwork5 │ │ ├── README.md │ │ ├── cal.asm │ │ ├── convert.py │ │ ├── docs │ │ │ └── Report.pdf │ │ └── echo.asm │ ├── Labwork6 │ │ ├── README.md │ │ ├── docs │ │ │ └── Report.pdf │ │ └── main.asm │ └── Labwork7 │ │ ├── README.md │ │ ├── docs │ │ └── Report.pdf │ │ └── main.asm ├── Databases │ ├── Labwork1 │ │ ├── README.md │ │ ├── docs │ │ │ ├── Report.pdf │ │ │ ├── datalogical.png │ │ │ └── infological.png │ │ ├── drop.sql │ │ └── scheme.sql │ ├── Labwork2 │ │ ├── README.md │ │ ├── docs │ │ │ └── Report.pdf │ │ └── main.sql │ ├── Labwork3 │ │ ├── docs │ │ │ └── Report.pdf │ │ └── function.sql │ └── Labwork4 │ │ ├── docs │ │ └── Report.pdf │ │ └── script.sql ├── DiscreteMaths │ └── Homework │ │ ├── 1.pdf │ │ ├── 2.pdf │ │ ├── 3.pdf │ │ ├── 4.pdf │ │ ├── 5.pdf │ │ └── 6.pdf ├── Lifesafety │ ├── Labwork_Emergencies │ │ └── Report.pdf │ ├── Labwork_Finance │ │ └── Report.pdf │ ├── Labwork_FinancePlanning │ │ └── Report.pdf │ ├── Labwork_Health │ │ └── Report.pdf │ ├── Labwork_Nutrition │ │ └── Report.pdf │ ├── Labwork_Relationships │ │ └── Report.pdf │ ├── Labwork_Sleep │ │ └── Report.pdf │ └── README.md └── Programming │ ├── Labwork5 │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── Dockerfile │ ├── README.md │ ├── docs │ │ └── Report.pdf │ ├── examples │ │ ├── add.script │ │ ├── add_invalid.script │ │ ├── recurse.script │ │ ├── recurse1.script │ │ └── recurse2.script │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── ru │ │ │ └── rmntim │ │ │ └── cli │ │ │ ├── Main.java │ │ │ ├── commands │ │ │ ├── AddCommand.java │ │ │ ├── AddIfMaxCommand.java │ │ │ ├── AddIfMinCommand.java │ │ │ ├── ClearCommand.java │ │ │ ├── Command.java │ │ │ ├── ExecuteCommand.java │ │ │ ├── ExitCommand.java │ │ │ ├── GreaterThanCharacterCommand.java │ │ │ ├── GroupByTypeCommand.java │ │ │ ├── HelpCommand.java │ │ │ ├── InfoCommand.java │ │ │ ├── RemoveCommand.java │ │ │ ├── RemoveLowerCommand.java │ │ │ ├── SaveCommand.java │ │ │ ├── ShowCommand.java │ │ │ ├── StartsWithNameCommand.java │ │ │ └── UpdateCommand.java │ │ │ ├── exceptions │ │ │ ├── BadCommandArgumentsException.java │ │ │ ├── BuildCancelledException.java │ │ │ ├── ExitException.java │ │ │ ├── InvalidScriptException.java │ │ │ ├── RecursionException.java │ │ │ └── ValidationException.java │ │ │ ├── logic │ │ │ ├── CollectionManager.java │ │ │ ├── CommandRegistryBuilder.java │ │ │ ├── ExecutionContext.java │ │ │ ├── Interpreter.java │ │ │ └── parsers │ │ │ │ ├── CoordinatesParser.java │ │ │ │ ├── DragonHeadParser.java │ │ │ │ ├── DragonParser.java │ │ │ │ └── Parser.java │ │ │ ├── models │ │ │ ├── Color.java │ │ │ ├── Coordinates.java │ │ │ ├── Dragon.java │ │ │ ├── DragonCharacter.java │ │ │ ├── DragonHead.java │ │ │ └── DragonType.java │ │ │ ├── storage │ │ │ ├── JsonStorageManager.java │ │ │ └── ZonedDateTimeJson.java │ │ │ └── validators │ │ │ ├── CollectionValidator.java │ │ │ ├── CoordinatesValidator.java │ │ │ ├── DragonHeadValidator.java │ │ │ ├── DragonValidator.java │ │ │ └── Validator.java │ │ └── resources │ │ └── checkstyle │ │ ├── checkstyle.xml │ │ └── suppressions.xml │ ├── Labwork6 │ ├── .gitignore │ ├── README.md │ ├── checkstyle-suppressions.xml │ ├── checkstyle.xml │ ├── docs │ │ └── Report.pdf │ ├── lab-client │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── ru │ │ │ └── rmntim │ │ │ └── client │ │ │ ├── Client.java │ │ │ ├── lib │ │ │ ├── CommandRegistryBuilder.java │ │ │ └── REPL.java │ │ │ └── network │ │ │ └── UDPClient.java │ ├── lab-common │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── ru │ │ │ └── rmntim │ │ │ └── common │ │ │ ├── GlobalInput.java │ │ │ ├── commands │ │ │ ├── Add.java │ │ │ ├── AddIfMax.java │ │ │ ├── AddIfMin.java │ │ │ ├── Clear.java │ │ │ ├── Command.java │ │ │ ├── GreaterThanCharacter.java │ │ │ ├── GroupByType.java │ │ │ ├── Info.java │ │ │ ├── Remove.java │ │ │ ├── RemoveLower.java │ │ │ ├── Show.java │ │ │ ├── StartsWith.java │ │ │ └── Update.java │ │ │ ├── models │ │ │ ├── Color.java │ │ │ ├── Coordinates.java │ │ │ ├── Dragon.java │ │ │ ├── DragonCharacter.java │ │ │ ├── DragonHead.java │ │ │ └── DragonType.java │ │ │ ├── network │ │ │ └── Response.java │ │ │ ├── parsers │ │ │ ├── BuildCancelledException.java │ │ │ ├── CoordinatesParser.java │ │ │ ├── DragonHeadParser.java │ │ │ └── DragonParser.java │ │ │ └── validators │ │ │ ├── CoordinatesValidator.java │ │ │ ├── DragonHeadValidator.java │ │ │ ├── DragonValidator.java │ │ │ ├── ValidationException.java │ │ │ └── Validator.java │ ├── lab-server │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── ru │ │ │ │ └── rmntim │ │ │ │ └── server │ │ │ │ ├── Server.java │ │ │ │ ├── lib │ │ │ │ ├── CollectionManager.java │ │ │ │ └── Interpreter.java │ │ │ │ ├── network │ │ │ │ ├── Data.java │ │ │ │ └── UDPServer.java │ │ │ │ └── storage │ │ │ │ ├── StorageManager.java │ │ │ │ └── ZonedDateTimeJson.java │ │ │ └── resources │ │ │ └── logback.xml │ └── pom.xml │ ├── Labwork7 │ ├── .gitignore │ ├── README.md │ ├── config │ │ └── checkstyle │ │ │ ├── checkstyle.xml │ │ │ └── suppressions.xml │ ├── docs │ │ └── Report.pdf │ ├── gradlew │ ├── gradlew.bat │ ├── lab-client │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── ru │ │ │ └── rmntim │ │ │ └── client │ │ │ ├── Client.java │ │ │ ├── lib │ │ │ ├── CommandCreator.java │ │ │ ├── CommandRegistryBuilder.java │ │ │ └── REPL.java │ │ │ └── network │ │ │ └── UDPClient.java │ ├── lab-common │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── ru │ │ │ └── rmntim │ │ │ └── common │ │ │ ├── GlobalInput.java │ │ │ ├── commands │ │ │ ├── Add.java │ │ │ ├── AddIfMax.java │ │ │ ├── AddIfMin.java │ │ │ ├── Clear.java │ │ │ ├── Command.java │ │ │ ├── GreaterThanCharacter.java │ │ │ ├── GroupByType.java │ │ │ ├── Info.java │ │ │ ├── Remove.java │ │ │ ├── RemoveLower.java │ │ │ ├── Show.java │ │ │ ├── StartsWith.java │ │ │ └── Update.java │ │ │ ├── models │ │ │ ├── Color.java │ │ │ ├── Coordinates.java │ │ │ ├── Dragon.java │ │ │ ├── DragonCharacter.java │ │ │ ├── DragonHead.java │ │ │ └── DragonType.java │ │ │ ├── network │ │ │ ├── Response.java │ │ │ └── UserCredentials.java │ │ │ ├── parsers │ │ │ ├── BuildCancelledException.java │ │ │ ├── CoordinatesParser.java │ │ │ ├── DragonHeadParser.java │ │ │ └── DragonParser.java │ │ │ └── validators │ │ │ ├── CoordinatesValidator.java │ │ │ ├── DragonHeadValidator.java │ │ │ ├── DragonValidator.java │ │ │ ├── ValidationException.java │ │ │ └── Validator.java │ ├── lab-server │ │ ├── build.gradle.kts │ │ ├── schema.sql │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── ru │ │ │ │ └── rmntim │ │ │ │ └── server │ │ │ │ ├── Server.java │ │ │ │ ├── lib │ │ │ │ ├── BadCredentialsException.java │ │ │ │ ├── CollectionManager.java │ │ │ │ └── Interpreter.java │ │ │ │ ├── network │ │ │ │ ├── Data.java │ │ │ │ └── UDPServer.java │ │ │ │ └── storage │ │ │ │ ├── DatabaseManager.java │ │ │ │ └── User.java │ │ │ └── resources │ │ │ └── logback.xml │ └── settings.gradle.kts │ └── Labwork8 │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── client │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── client │ │ │ ├── App.java │ │ │ ├── auth │ │ │ └── SessionHandler.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── EditController.java │ │ │ └── MainController.java │ │ │ ├── network │ │ │ └── UDPClient.java │ │ │ ├── script │ │ │ └── ScriptExecutor.java │ │ │ ├── ui │ │ │ └── DialogManager.java │ │ │ └── utility │ │ │ ├── DragonPresenter.java │ │ │ └── Localizator.java │ │ └── resources │ │ ├── auth.fxml │ │ ├── edit.fxml │ │ ├── locales │ │ ├── gui_en_AU.properties │ │ ├── gui_et_EE.properties │ │ ├── gui_pl_PL.properties │ │ └── gui_ru_RU.properties │ │ └── main.fxml │ ├── common │ ├── build.gradle │ └── src │ │ └── main │ │ └── java │ │ └── common │ │ ├── domain │ │ ├── Color.java │ │ ├── Coordinates.java │ │ ├── Dragon.java │ │ ├── DragonCharacter.java │ │ ├── DragonHead.java │ │ └── DragonType.java │ │ ├── exceptions │ │ ├── APIException.java │ │ ├── BadOwnerException.java │ │ ├── CollectionIsEmptyException.java │ │ ├── ErrorResponseException.java │ │ ├── IncorrectInputInScriptException.java │ │ ├── InvalidFormException.java │ │ ├── MustBeNotEmptyException.java │ │ ├── NotFoundException.java │ │ ├── NotInDeclaredLimitsException.java │ │ ├── ScriptRecursionException.java │ │ ├── UserAlreadyExistsException.java │ │ └── WrongAmountOfElementsException.java │ │ ├── network │ │ ├── requests │ │ │ ├── AddIfMaxRequest.java │ │ │ ├── AddIfMinRequest.java │ │ │ ├── AddRequest.java │ │ │ ├── AuthenticateRequest.java │ │ │ ├── ClearRequest.java │ │ │ ├── HelpRequest.java │ │ │ ├── InfoRequest.java │ │ │ ├── RegisterRequest.java │ │ │ ├── RemoveByIdRequest.java │ │ │ ├── Request.java │ │ │ ├── ShowRequest.java │ │ │ └── UpdateRequest.java │ │ └── responses │ │ │ ├── AddIfMaxResponse.java │ │ │ ├── AddIfMinResponse.java │ │ │ ├── AddResponse.java │ │ │ ├── AuthenticateResponse.java │ │ │ ├── BadCredentialsResponse.java │ │ │ ├── ClearResponse.java │ │ │ ├── ErrorResponse.java │ │ │ ├── HelpResponse.java │ │ │ ├── InfoResponse.java │ │ │ ├── NoSuchCommandResponse.java │ │ │ ├── RegisterResponse.java │ │ │ ├── RemoveByIdResponse.java │ │ │ ├── Response.java │ │ │ ├── ShowResponse.java │ │ │ └── UpdateResponse.java │ │ ├── user │ │ └── User.java │ │ └── utility │ │ └── CommandName.java │ ├── docker-compose.yml │ ├── docs │ └── Report.pdf │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── server │ ├── .env.example │ ├── build.gradle │ ├── sql │ │ ├── drop.sql │ │ └── schema.sql │ └── src │ │ └── main │ │ ├── java │ │ └── server │ │ │ ├── App.java │ │ │ ├── commands │ │ │ ├── Add.java │ │ │ ├── AddIfMax.java │ │ │ ├── AddIfMin.java │ │ │ ├── Authenticate.java │ │ │ ├── Clear.java │ │ │ ├── Command.java │ │ │ ├── Describable.java │ │ │ ├── Executable.java │ │ │ ├── Help.java │ │ │ ├── Info.java │ │ │ ├── Register.java │ │ │ ├── RemoveById.java │ │ │ ├── Show.java │ │ │ └── Update.java │ │ │ ├── dao │ │ │ ├── DragonDAO.java │ │ │ ├── DragonHeadDAO.java │ │ │ └── UserDAO.java │ │ │ ├── handlers │ │ │ └── CommandHandler.java │ │ │ ├── managers │ │ │ ├── AuthManager.java │ │ │ ├── CommandManagerBuilder.java │ │ │ └── PersistenceManager.java │ │ │ ├── network │ │ │ ├── UDPDatagramServer.java │ │ │ └── UDPServer.java │ │ │ ├── repositories │ │ │ └── DragonRepository.java │ │ │ └── utils │ │ │ └── HibernateUtil.java │ │ └── resources │ │ └── logback.xml │ └── settings.gradle ├── Semester3 ├── ProgrammingLanguages │ ├── .gitignore │ ├── Seminar1 │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── hello.asm │ │ ├── hello2.asm │ │ ├── task05.sh │ │ ├── task4.asm │ │ └── test.txt │ ├── Seminar2 │ │ ├── task1 │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── print_hex.asm │ │ ├── task2 │ │ │ ├── .gitignore │ │ │ ├── lib.asm │ │ │ ├── test_string.py │ │ │ └── test_string_align.py │ │ ├── task3 │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── align.asm │ │ └── task4 │ │ │ ├── .gitignore │ │ │ ├── lib.inc │ │ │ └── test_uint.py │ ├── Seminar3 │ │ ├── shared │ │ │ ├── lib.asm │ │ │ └── lib.inc │ │ ├── task1 │ │ │ ├── Makefile │ │ │ └── stackn.asm │ │ ├── task2 │ │ │ ├── Makefile │ │ │ └── main.asm │ │ └── task3 │ │ │ ├── Makefile │ │ │ ├── lib.asm │ │ │ ├── lib.inc │ │ │ └── main.asm │ ├── Seminar4 │ │ ├── task1 │ │ │ ├── Makefile │ │ │ ├── hello.txt │ │ │ └── main.asm │ │ ├── task2 │ │ │ ├── Makefile │ │ │ ├── hello.txt │ │ │ └── main.asm │ │ ├── task3 │ │ │ ├── Makefile │ │ │ ├── hello.c │ │ │ └── string.asm │ │ └── task4 │ │ │ ├── Makefile │ │ │ ├── cat.c │ │ │ ├── mmap.asm │ │ │ └── secret.txt │ ├── Seminar5 │ │ ├── .clangd │ │ ├── task1 │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── task2 │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── task3 │ │ │ ├── Makefile │ │ │ └── main.c │ │ └── task4 │ │ │ ├── Makefile │ │ │ └── main.c │ ├── Seminar6 │ │ ├── task1 │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── task2 │ │ │ ├── Makefile │ │ │ └── main.c │ │ └── task3 │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ ├── vector.c │ │ │ └── vector.h │ ├── Seminar7 │ │ ├── task1 │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── task2 │ │ │ ├── Makefile │ │ │ ├── hack │ │ │ └── main.c │ │ ├── task3 │ │ │ ├── Makefile │ │ │ ├── hack │ │ │ └── main.c │ │ └── task4 │ │ │ ├── Makefile │ │ │ └── main.c │ └── Seminar8 │ │ ├── task1 │ │ ├── Makefile │ │ ├── bad_print.c │ │ └── main.c │ │ ├── task2 │ │ ├── Makefile │ │ └── main.c │ │ ├── task3 │ │ ├── Makefile │ │ └── main.c │ │ └── task4 │ │ ├── Makefile │ │ └── main.c └── WebProgramming │ └── Labwork1 │ ├── .gitignore │ ├── README.md │ ├── assets │ └── areas.png │ ├── build.gradle │ ├── docs │ └── Report.pdf │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── guide │ ├── README.md │ ├── assets │ │ └── project.png │ ├── httpd-helios.conf │ └── httpd.conf │ ├── libs │ └── fastcgi-lib.jar │ ├── settings.gradle │ ├── src │ └── main │ │ └── java │ │ └── ru │ │ └── rmntim │ │ └── web │ │ ├── Main.java │ │ ├── Params.java │ │ └── ValidationException.java │ └── static │ ├── index.html │ ├── index.js │ └── styles │ ├── main.css │ └── reset.css ├── Semester4 ├── CSA │ └── Labwork3 │ │ ├── README.md │ │ ├── schema.png │ │ └── tasks │ │ ├── README.md │ │ ├── acc32 │ │ ├── config.yaml │ │ ├── main.s │ │ └── original.py │ │ ├── f32a │ │ ├── config.yaml │ │ ├── main.s │ │ └── original.py │ │ ├── m68k │ │ ├── config.yaml │ │ ├── main.s │ │ └── original.py │ │ ├── risc-iv-32 │ │ ├── config.yaml │ │ ├── main.s │ │ └── original.py │ │ └── run.sh ├── CompMath │ └── Colab Notebooks │ │ ├── Лабораторное_занятие_10.ipynb │ │ ├── Лабораторное_занятие_11.ipynb │ │ ├── Лабораторное_занятие_12.ipynb │ │ ├── Лабораторное_занятие_13.ipynb │ │ ├── Лабораторное_занятие_14.ipynb │ │ ├── Лабораторное_занятие_15.ipynb │ │ ├── Лабораторное_занятие_16.ipynb │ │ ├── Лабораторное_занятие_2.ipynb │ │ ├── Лабораторное_занятие_3.ipynb │ │ ├── Лабораторное_занятие_4.ipynb │ │ ├── Лабораторное_занятие_5.ipynb │ │ ├── Лабораторное_занятие_6.ipynb │ │ ├── Лабораторное_занятие_7.ipynb │ │ └── Лабораторное_занятие_8.ipynb ├── OM │ ├── Labwork 2+3 │ │ └── Labwork2+3.pdf │ ├── Labwork 4 │ │ └── Labwork4.pdf │ ├── Labwork 5 │ │ └── Labwork5.pdf │ └── Labwork 6 │ │ └── Labwork6.pdf ├── Physics │ ├── Labwork1 │ │ ├── .gitignore │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── docs │ │ │ └── report.pdf │ │ └── src │ │ │ └── main.rs │ ├── Labwork2 │ │ ├── Task1 │ │ │ ├── lab2.pde │ │ │ ├── lab2.pde.bak │ │ │ └── lab2_output │ │ │ │ ├── lab2.pg8 │ │ │ │ ├── lab2_debug.txt │ │ │ │ ├── lab2_initialmesh.xfr │ │ │ │ ├── lab2_log.txt │ │ │ │ └── lab2_restart.xfr │ │ └── Task2 │ │ │ ├── lab2.pde │ │ │ ├── lab2.pde.bak │ │ │ └── lab2_output │ │ │ ├── lab2.pg8 │ │ │ ├── lab2_debug.txt │ │ │ ├── lab2_initialmesh.xfr │ │ │ ├── lab2_log.txt │ │ │ └── lab2_restart.xfr │ ├── Labwork4 │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── Labwork5 │ │ └── main.py │ ├── Physics3.ipynb │ └── Physics4.ipynb ├── SEB │ ├── Labwork1 │ │ └── 1c-its.srs.pdf │ └── Labwork2 │ │ ├── .gitignore │ │ ├── Report.pdf │ │ ├── commits │ │ ├── commit0.zip │ │ ├── commit1.zip │ │ ├── commit10.zip │ │ ├── commit11.zip │ │ ├── commit12.zip │ │ ├── commit13.zip │ │ ├── commit14.zip │ │ ├── commit15.zip │ │ ├── commit16.zip │ │ ├── commit17.zip │ │ ├── commit18.zip │ │ ├── commit19.zip │ │ ├── commit2.zip │ │ ├── commit20.zip │ │ ├── commit21.zip │ │ ├── commit22.zip │ │ ├── commit23.zip │ │ ├── commit24.zip │ │ ├── commit25.zip │ │ ├── commit26.zip │ │ ├── commit27.zip │ │ ├── commit28.zip │ │ ├── commit29.zip │ │ ├── commit3.zip │ │ ├── commit30.zip │ │ ├── commit31.zip │ │ ├── commit32.zip │ │ ├── commit33.zip │ │ ├── commit34.zip │ │ ├── commit35.zip │ │ ├── commit36.zip │ │ ├── commit37.zip │ │ ├── commit38.zip │ │ ├── commit39.zip │ │ ├── commit4.zip │ │ ├── commit40.zip │ │ ├── commit41.zip │ │ ├── commit42.zip │ │ ├── commit44.zip │ │ ├── commit47.zip │ │ ├── commit48.zip │ │ ├── commit49.zip │ │ ├── commit5.zip │ │ ├── commit50.zip │ │ ├── commit52.zip │ │ ├── commit53.zip │ │ ├── commit54.zip │ │ ├── commit55.zip │ │ ├── commit56.zip │ │ ├── commit57.zip │ │ ├── commit58.zip │ │ ├── commit6.zip │ │ ├── commit61.zip │ │ ├── commit62.zip │ │ ├── commit63.zip │ │ ├── commit64.zip │ │ ├── commit65.zip │ │ ├── commit66.zip │ │ ├── commit68.zip │ │ ├── commit69.zip │ │ ├── commit7.zip │ │ ├── commit70.zip │ │ ├── commit72.zip │ │ ├── commit73.zip │ │ ├── commit74.zip │ │ ├── commit8.zip │ │ └── commit9.zip │ │ ├── dop-impossible.sh │ │ ├── dop.sh │ │ ├── reproduce-git.sh │ │ └── reproduce-svn.sh └── Statistics │ ├── MatStatProj.ipynb │ ├── Statistics1.ipynb │ ├── Statistics2.ipynb │ ├── Statistics3.ipynb │ └── Statistics4.ipynb └── Semester5 └── FEE ├── Book.pdf ├── Labs └── ЛР1_Тимошкин_P3331.pdf ├── Tasks └── ЛР1_варианты_параметров_исследуемой_цепи.pdf └── Variants.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/README.md -------------------------------------------------------------------------------- /Semester1/BasicsOfProfessionalActivity/Labwork1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/BasicsOfProfessionalActivity/Labwork1/README.md -------------------------------------------------------------------------------- /Semester1/BasicsOfProfessionalActivity/Labwork1/lab1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/BasicsOfProfessionalActivity/Labwork1/lab1.pdf -------------------------------------------------------------------------------- /Semester1/BasicsOfProfessionalActivity/Labwork1/lab1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/BasicsOfProfessionalActivity/Labwork1/lab1.sh -------------------------------------------------------------------------------- /Semester1/BasicsOfProfessionalActivity/Labwork2/NewData.txt: -------------------------------------------------------------------------------- 1 | a=3213 2 | b=-7000 3 | c=64 4 | -------------------------------------------------------------------------------- /Semester1/BasicsOfProfessionalActivity/Labwork2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/BasicsOfProfessionalActivity/Labwork2/README.md -------------------------------------------------------------------------------- /Semester1/BasicsOfProfessionalActivity/Labwork2/lab2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/BasicsOfProfessionalActivity/Labwork2/lab2.pdf -------------------------------------------------------------------------------- /Semester1/BasicsOfProfessionalActivity/Labwork2/orig.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/BasicsOfProfessionalActivity/Labwork2/orig.asm -------------------------------------------------------------------------------- /Semester1/BasicsOfProfessionalActivity/Labwork2/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/BasicsOfProfessionalActivity/Labwork2/task.png -------------------------------------------------------------------------------- /Semester1/ComputerScience/Annotations/11_10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Annotations/11_10.pdf -------------------------------------------------------------------------------- /Semester1/ComputerScience/Annotations/13_09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Annotations/13_09.pdf -------------------------------------------------------------------------------- /Semester1/ComputerScience/Annotations/22_11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Annotations/22_11.pdf -------------------------------------------------------------------------------- /Semester1/ComputerScience/Annotations/25_10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Annotations/25_10.pdf -------------------------------------------------------------------------------- /Semester1/ComputerScience/Annotations/27_09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Annotations/27_09.pdf -------------------------------------------------------------------------------- /Semester1/ComputerScience/Annotations/8_11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Annotations/8_11.pdf -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork1/lab1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork1/lab1.pdf -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork2/lab2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork2/lab2.pdf -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/.gitignore -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | pythonpath = . -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/regulars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/regulars.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/requirements.txt -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/main_task/test_broken_emoticons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/main_task/test_broken_emoticons.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/main_task/test_emoticons_with_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/main_task/test_emoticons_with_noise.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/main_task/test_empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/main_task/test_empty.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/main_task/test_many_emoticons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/main_task/test_many_emoticons.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/main_task/test_one_emoticon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/main_task/test_one_emoticon.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/second_task/test_many_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/second_task/test_many_words.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/second_task/test_no_vt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/second_task/test_no_vt.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/second_task/test_no_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/second_task/test_no_words.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/second_task/test_one_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/second_task/test_one_word.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/second_task/test_three_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/second_task/test_three_words.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/third_task/test_floats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/third_task/test_floats.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/third_task/test_negative_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/third_task/test_negative_numbers.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/third_task/test_no_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/third_task/test_no_numbers.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/third_task/test_numbers_in_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/third_task/test_numbers_in_text.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork3/tests/third_task/test_plus_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork3/tests/third_task/test_plus_expr.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/.gitignore: -------------------------------------------------------------------------------- 1 | output.xml 2 | **/*/__pycache__/ 3 | .vscode/ -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/bonus3_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/bonus3_input.json -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/docs/lab4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/docs/lab4.pdf -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/input.json -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/bonus1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/tasks/bonus1/main.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/bonus2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/bonus2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/tasks/bonus2/main.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/bonus2/myjson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/tasks/bonus2/myjson/__init__.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/bonus2/myxml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/tasks/bonus2/myxml/__init__.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/bonus3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/bonus3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/tasks/bonus3/main.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/bonus3/myjson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/tasks/bonus3/myjson/__init__.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/bonus3/myxml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/tasks/bonus3/myxml/__init__.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/bonus4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/tasks/bonus4.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/main/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/tasks/main/main.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/main/myjson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/tasks/main/myjson/__init__.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork4/tasks/main/myxml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork4/tasks/main/myxml/__init__.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork5/BonusTask2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork5/BonusTask2.xlsx -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork5/BonusTask3/.gitignore: -------------------------------------------------------------------------------- 1 | .venv/ 2 | -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork5/BonusTask3/BonusTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork5/BonusTask3/BonusTask.py -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork5/BonusTask3/Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork5/BonusTask3/Data.csv -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork5/BonusTask3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork5/BonusTask3/requirements.txt -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork5/Input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork5/Input.csv -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork5/MainTask.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork5/MainTask.xlsm -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork6/.gitignore: -------------------------------------------------------------------------------- 1 | out/ 2 | -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork6/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork6/build.sh -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork6/images/ITMO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork6/images/ITMO.png -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork6/images/Picture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork6/images/Picture1.png -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork6/images/Picture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork6/images/Picture2.png -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork6/images/Picture3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork6/images/Picture3.png -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork6/images/Picture4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork6/images/Picture4.png -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork6/src/Article.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork6/src/Article.tex -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork6/src/Bonus.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork6/src/Bonus.tex -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork6/src/Main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork6/src/Main.tex -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork6/src/Original.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork6/src/Original.pdf -------------------------------------------------------------------------------- /Semester1/ComputerScience/Labwork6/src/Title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ComputerScience/Labwork6/src/Title.tex -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Coursework/Part1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Coursework/Part1.pdf -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Coursework/Part1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Coursework/Part1.tex -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Coursework/Part2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Coursework/Part2.pdf -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Coursework/Part2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Coursework/Part2.tex -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Coursework/Тимошкин_Роман_Курсовая_Работа_P3131_Часть1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Coursework/Тимошкин_Роман_Курсовая_Работа_P3131_Часть1.pdf -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Coursework/Тимошкин_Роман_Курсовая_Работа_P3131_Часть2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Coursework/Тимошкин_Роман_Курсовая_Работа_P3131_Часть2.pdf -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н1.pdf -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н2.pdf -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н3.pdf -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н4.pdf -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н5.pdf -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н6.pdf -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н7.pdf -------------------------------------------------------------------------------- /Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/DiscreteMaths/Homework/Тимошкин_Роман_Домашняя_Работа_н8.pdf -------------------------------------------------------------------------------- /Semester1/Programming/Labwork1/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork1/Main.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork1/README.md -------------------------------------------------------------------------------- /Semester1/Programming/Labwork1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork1/build.sh -------------------------------------------------------------------------------- /Semester1/Programming/Labwork1/docs/3rdTask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork1/docs/3rdTask.png -------------------------------------------------------------------------------- /Semester1/Programming/Labwork1/docs/lab1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork1/docs/lab1.pdf -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | target/ -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/Pokemon.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/Pokemon.jar -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/README.md -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/dependency-reduced-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/dependency-reduced-pom.xml -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/diagram.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/diagram.plantuml -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/diagram.png -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/docs/lab2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/docs/lab2.pdf -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/output.log -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/pom.xml -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/Main.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/physical/DoubleKick.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/physical/DoubleKick.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/physical/MegaPunch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/physical/MegaPunch.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/physical/ShadowPunch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/physical/ShadowPunch.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/physical/TripleKick.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/physical/TripleKick.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/physical/WingAttack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/physical/WingAttack.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/special/IceBeam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/special/IceBeam.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/special/ThunderShock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/special/ThunderShock.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/status/Amnesia.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/status/Amnesia.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/status/LightScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/status/LightScreen.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/status/ThunderWave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/attacks/status/ThunderWave.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/pokemons/Aggron.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/pokemons/Aggron.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/pokemons/Charizard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/pokemons/Charizard.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/pokemons/Electabuzz.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/pokemons/Electabuzz.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/pokemons/Joltik.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/pokemons/Joltik.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/pokemons/Koffing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/pokemons/Koffing.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork2/src/main/java/com/rmntim/pokemons/Sneasel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork2/src/main/java/com/rmntim/pokemons/Sneasel.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/.gitignore -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/README.md -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/docs/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/docs/diagram.png -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/docs/lab3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/docs/lab3.pdf -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/pom.xml -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/App.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/interfaces/CanOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/interfaces/CanOrder.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/interfaces/Tellable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/interfaces/Tellable.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/interfaces/Thinker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/interfaces/Thinker.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/actions/Action.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/actions/Action.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/actions/GoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/actions/GoAction.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/actions/TakeAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/actions/TakeAction.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/common/CaseConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/common/CaseConverter.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/common/Communicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/common/Communicator.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/common/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/common/Order.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/people/Captain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/people/Captain.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/people/Engineer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/people/Engineer.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/people/Group.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/people/Group.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/people/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/people/Person.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/people/Sex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/people/Sex.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/people/Shorty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/people/Shorty.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/story/Sentence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/story/Sentence.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/story/Story.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork3/src/main/java/com/rmntim/models/story/Story.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/.gitignore -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/README.md -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/docs/Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/docs/Diagram.png -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/docs/Report.pdf -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/pom.xml -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/App.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/exceptions/EmptyStoryException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/exceptions/EmptyStoryException.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/exceptions/NoSuchMemberException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/exceptions/NoSuchMemberException.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/exceptions/NotEnoughSpaceException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/exceptions/NotEnoughSpaceException.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/interfaces/CanOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/interfaces/CanOrder.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/interfaces/Plurable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/interfaces/Plurable.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/interfaces/Thinker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/interfaces/Thinker.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/common/Action.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/common/Action.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/common/CaseConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/common/CaseConverter.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/common/Communicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/common/Communicator.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/common/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/common/Item.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/common/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/common/Order.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/common/Wearable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/common/Wearable.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/people/Captain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/people/Captain.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/people/Group.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/people/Group.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/people/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/people/Person.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/people/Sex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/people/Sex.java -------------------------------------------------------------------------------- /Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/story/Story.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/Programming/Labwork4/src/main/java/com/rmntim/models/story/Story.java -------------------------------------------------------------------------------- /Semester1/ReformsAndReformersInRussianHistory/Essay/Essay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ReformsAndReformersInRussianHistory/Essay/Essay.pdf -------------------------------------------------------------------------------- /Semester1/ReformsAndReformersInRussianHistory/Essay/EssayUniqueness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ReformsAndReformersInRussianHistory/Essay/EssayUniqueness.png -------------------------------------------------------------------------------- /Semester1/ReformsAndReformersInRussianHistory/Report/Presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ReformsAndReformersInRussianHistory/Report/Presentation.pptx -------------------------------------------------------------------------------- /Semester1/ReformsAndReformersInRussianHistory/Report/Text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester1/ReformsAndReformersInRussianHistory/Report/Text.md -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/DiffTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/DiffTest.pdf -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork3/README.md -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork3/bitwidth.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork3/bitwidth.asm -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork3/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork3/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork3/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork3/main.asm -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork3/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork3/task.png -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork4/README.md -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork4/divmul.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork4/divmul.asm -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork4/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork4/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork4/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork4/main.asm -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork4/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork4/task.png -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork5/README.md -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork5/cal.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork5/cal.asm -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork5/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork5/convert.py -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork5/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork5/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork5/echo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork5/echo.asm -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork6/README.md -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork6/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork6/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork6/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork6/main.asm -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork7/README.md -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork7/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork7/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/BasicsOfProfessionalActivity/Labwork7/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/BasicsOfProfessionalActivity/Labwork7/main.asm -------------------------------------------------------------------------------- /Semester2/Databases/Labwork1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork1/README.md -------------------------------------------------------------------------------- /Semester2/Databases/Labwork1/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork1/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/Databases/Labwork1/docs/datalogical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork1/docs/datalogical.png -------------------------------------------------------------------------------- /Semester2/Databases/Labwork1/docs/infological.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork1/docs/infological.png -------------------------------------------------------------------------------- /Semester2/Databases/Labwork1/drop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork1/drop.sql -------------------------------------------------------------------------------- /Semester2/Databases/Labwork1/scheme.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork1/scheme.sql -------------------------------------------------------------------------------- /Semester2/Databases/Labwork2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork2/README.md -------------------------------------------------------------------------------- /Semester2/Databases/Labwork2/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork2/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/Databases/Labwork2/main.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork2/main.sql -------------------------------------------------------------------------------- /Semester2/Databases/Labwork3/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork3/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/Databases/Labwork3/function.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork3/function.sql -------------------------------------------------------------------------------- /Semester2/Databases/Labwork4/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork4/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/Databases/Labwork4/script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Databases/Labwork4/script.sql -------------------------------------------------------------------------------- /Semester2/DiscreteMaths/Homework/1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/DiscreteMaths/Homework/1.pdf -------------------------------------------------------------------------------- /Semester2/DiscreteMaths/Homework/2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/DiscreteMaths/Homework/2.pdf -------------------------------------------------------------------------------- /Semester2/DiscreteMaths/Homework/3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/DiscreteMaths/Homework/3.pdf -------------------------------------------------------------------------------- /Semester2/DiscreteMaths/Homework/4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/DiscreteMaths/Homework/4.pdf -------------------------------------------------------------------------------- /Semester2/DiscreteMaths/Homework/5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/DiscreteMaths/Homework/5.pdf -------------------------------------------------------------------------------- /Semester2/DiscreteMaths/Homework/6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/DiscreteMaths/Homework/6.pdf -------------------------------------------------------------------------------- /Semester2/Lifesafety/Labwork_Emergencies/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Lifesafety/Labwork_Emergencies/Report.pdf -------------------------------------------------------------------------------- /Semester2/Lifesafety/Labwork_Finance/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Lifesafety/Labwork_Finance/Report.pdf -------------------------------------------------------------------------------- /Semester2/Lifesafety/Labwork_FinancePlanning/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Lifesafety/Labwork_FinancePlanning/Report.pdf -------------------------------------------------------------------------------- /Semester2/Lifesafety/Labwork_Health/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Lifesafety/Labwork_Health/Report.pdf -------------------------------------------------------------------------------- /Semester2/Lifesafety/Labwork_Nutrition/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Lifesafety/Labwork_Nutrition/Report.pdf -------------------------------------------------------------------------------- /Semester2/Lifesafety/Labwork_Relationships/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Lifesafety/Labwork_Relationships/Report.pdf -------------------------------------------------------------------------------- /Semester2/Lifesafety/Labwork_Sleep/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Lifesafety/Labwork_Sleep/Report.pdf -------------------------------------------------------------------------------- /Semester2/Lifesafety/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Lifesafety/README.md -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/.gitignore -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/Dockerfile -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/README.md -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/examples/add.script: -------------------------------------------------------------------------------- 1 | add 2 | Goodname 3 | 10 4 | -12 5 | 99 6 | brown 7 | air 8 | chaotic 9 | y 10 | 10 11 | -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/examples/add_invalid.script: -------------------------------------------------------------------------------- 1 | add 2 | Goodname 3 | 10 4 | -12123131 5 | 99 6 | brown 7 | air 8 | chaotic 9 | y 10 | 10 11 | -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/examples/recurse.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/examples/recurse.script -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/examples/recurse1.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/examples/recurse1.script -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/examples/recurse2.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/examples/recurse2.script -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/mvnw -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/mvnw.cmd -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/pom.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/Main.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/AddCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/AddCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/AddIfMaxCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/AddIfMaxCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/AddIfMinCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/AddIfMinCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/ClearCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/ClearCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/Command.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/ExecuteCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/ExecuteCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/ExitCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/ExitCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/GreaterThanCharacterCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/GreaterThanCharacterCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/GroupByTypeCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/GroupByTypeCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/HelpCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/HelpCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/InfoCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/InfoCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/RemoveCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/RemoveCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/RemoveLowerCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/RemoveLowerCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/SaveCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/SaveCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/ShowCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/ShowCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/StartsWithNameCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/StartsWithNameCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/UpdateCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/commands/UpdateCommand.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/exceptions/BadCommandArgumentsException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/exceptions/BadCommandArgumentsException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/exceptions/BuildCancelledException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/exceptions/BuildCancelledException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/exceptions/ExitException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/exceptions/ExitException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/exceptions/InvalidScriptException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/exceptions/InvalidScriptException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/exceptions/RecursionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/exceptions/RecursionException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/exceptions/ValidationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/exceptions/ValidationException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/CollectionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/CollectionManager.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/CommandRegistryBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/CommandRegistryBuilder.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/ExecutionContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/ExecutionContext.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/Interpreter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/Interpreter.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/parsers/CoordinatesParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/parsers/CoordinatesParser.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/parsers/DragonHeadParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/parsers/DragonHeadParser.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/parsers/DragonParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/parsers/DragonParser.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/parsers/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/logic/parsers/Parser.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/models/Color.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/models/Color.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/models/Coordinates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/models/Coordinates.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/models/Dragon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/models/Dragon.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/models/DragonCharacter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/models/DragonCharacter.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/models/DragonHead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/models/DragonHead.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/models/DragonType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/models/DragonType.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/storage/JsonStorageManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/storage/JsonStorageManager.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/storage/ZonedDateTimeJson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/storage/ZonedDateTimeJson.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/validators/CollectionValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/validators/CollectionValidator.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/validators/CoordinatesValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/validators/CoordinatesValidator.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/validators/DragonHeadValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/validators/DragonHeadValidator.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/validators/DragonValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/validators/DragonValidator.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/validators/Validator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/java/ru/rmntim/cli/validators/Validator.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/resources/checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/resources/checkstyle/checkstyle.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork5/src/main/resources/checkstyle/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork5/src/main/resources/checkstyle/suppressions.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/.gitignore -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/README.md -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/checkstyle-suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/checkstyle-suppressions.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/checkstyle.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-client/.gitignore: -------------------------------------------------------------------------------- 1 | *.lab -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-client/pom.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-client/src/main/java/ru/rmntim/client/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-client/src/main/java/ru/rmntim/client/Client.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-client/src/main/java/ru/rmntim/client/lib/REPL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-client/src/main/java/ru/rmntim/client/lib/REPL.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-client/src/main/java/ru/rmntim/client/network/UDPClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-client/src/main/java/ru/rmntim/client/network/UDPClient.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/pom.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/GlobalInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/GlobalInput.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Add.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Add.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/AddIfMax.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/AddIfMax.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/AddIfMin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/AddIfMin.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Clear.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Clear.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Command.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/GroupByType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/GroupByType.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Info.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Remove.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Remove.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/RemoveLower.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/RemoveLower.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Show.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Show.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/StartsWith.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/StartsWith.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Update.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/commands/Update.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/models/Color.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/models/Color.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/models/Coordinates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/models/Coordinates.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/models/Dragon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/models/Dragon.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/models/DragonCharacter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/models/DragonCharacter.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/models/DragonHead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/models/DragonHead.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/models/DragonType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/models/DragonType.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/network/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/network/Response.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/parsers/CoordinatesParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/parsers/CoordinatesParser.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/parsers/DragonHeadParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/parsers/DragonHeadParser.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/parsers/DragonParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/parsers/DragonParser.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/validators/Validator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-common/src/main/java/ru/rmntim/common/validators/Validator.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-server/pom.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/Server.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/lib/CollectionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/lib/CollectionManager.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/lib/Interpreter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/lib/Interpreter.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/network/Data.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/network/Data.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/network/UDPServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/network/UDPServer.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/storage/StorageManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/storage/StorageManager.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/storage/ZonedDateTimeJson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-server/src/main/java/ru/rmntim/server/storage/ZonedDateTimeJson.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/lab-server/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/lab-server/src/main/resources/logback.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork6/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork6/pom.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/.gitignore -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/README.md -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/config/checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/config/checkstyle/checkstyle.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/config/checkstyle/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/config/checkstyle/suppressions.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/gradlew -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/gradlew.bat -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-client/.gitignore: -------------------------------------------------------------------------------- 1 | *.lab -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-client/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-client/build.gradle.kts -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-client/src/main/java/ru/rmntim/client/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-client/src/main/java/ru/rmntim/client/Client.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-client/src/main/java/ru/rmntim/client/lib/CommandCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-client/src/main/java/ru/rmntim/client/lib/CommandCreator.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-client/src/main/java/ru/rmntim/client/lib/REPL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-client/src/main/java/ru/rmntim/client/lib/REPL.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-client/src/main/java/ru/rmntim/client/network/UDPClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-client/src/main/java/ru/rmntim/client/network/UDPClient.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/build.gradle.kts -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/GlobalInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/GlobalInput.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Add.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Add.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/AddIfMax.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/AddIfMax.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/AddIfMin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/AddIfMin.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Clear.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Clear.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Command.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/GroupByType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/GroupByType.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Info.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Remove.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Remove.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/RemoveLower.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/RemoveLower.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Show.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Show.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/StartsWith.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/StartsWith.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Update.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/commands/Update.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/models/Color.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/models/Color.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/models/Coordinates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/models/Coordinates.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/models/Dragon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/models/Dragon.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/models/DragonCharacter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/models/DragonCharacter.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/models/DragonHead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/models/DragonHead.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/models/DragonType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/models/DragonType.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/network/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/network/Response.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/network/UserCredentials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/network/UserCredentials.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/parsers/CoordinatesParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/parsers/CoordinatesParser.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/parsers/DragonHeadParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/parsers/DragonHeadParser.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/parsers/DragonParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/parsers/DragonParser.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/validators/Validator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-common/src/main/java/ru/rmntim/common/validators/Validator.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-server/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-server/build.gradle.kts -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-server/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-server/schema.sql -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/Server.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/lib/CollectionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/lib/CollectionManager.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/lib/Interpreter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/lib/Interpreter.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/network/Data.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/network/Data.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/network/UDPServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/network/UDPServer.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/storage/DatabaseManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/storage/DatabaseManager.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/storage/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-server/src/main/java/ru/rmntim/server/storage/User.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/lab-server/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/lab-server/src/main/resources/logback.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork7/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork7/settings.gradle.kts -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/.gitignore -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/Dockerfile -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/LICENSE -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/README.md -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/build.gradle -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/java/client/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/java/client/App.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/java/client/auth/SessionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/java/client/auth/SessionHandler.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/java/client/controllers/AuthController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/java/client/controllers/AuthController.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/java/client/controllers/EditController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/java/client/controllers/EditController.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/java/client/controllers/MainController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/java/client/controllers/MainController.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/java/client/network/UDPClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/java/client/network/UDPClient.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/java/client/script/ScriptExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/java/client/script/ScriptExecutor.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/java/client/ui/DialogManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/java/client/ui/DialogManager.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/java/client/utility/DragonPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/java/client/utility/DragonPresenter.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/java/client/utility/Localizator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/java/client/utility/Localizator.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/resources/auth.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/resources/auth.fxml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/resources/edit.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/resources/edit.fxml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/resources/locales/gui_en_AU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/resources/locales/gui_en_AU.properties -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/resources/locales/gui_et_EE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/resources/locales/gui_et_EE.properties -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/resources/locales/gui_pl_PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/resources/locales/gui_pl_PL.properties -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/resources/locales/gui_ru_RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/resources/locales/gui_ru_RU.properties -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/client/src/main/resources/main.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/client/src/main/resources/main.fxml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/build.gradle -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/domain/Color.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/domain/Color.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/domain/Coordinates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/domain/Coordinates.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/domain/Dragon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/domain/Dragon.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/domain/DragonCharacter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/domain/DragonCharacter.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/domain/DragonHead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/domain/DragonHead.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/domain/DragonType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/domain/DragonType.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/APIException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/APIException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/BadOwnerException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/BadOwnerException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/CollectionIsEmptyException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/CollectionIsEmptyException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/ErrorResponseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/ErrorResponseException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/InvalidFormException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/InvalidFormException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/MustBeNotEmptyException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/MustBeNotEmptyException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/NotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/NotFoundException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/NotInDeclaredLimitsException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/NotInDeclaredLimitsException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/ScriptRecursionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/ScriptRecursionException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/UserAlreadyExistsException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/exceptions/UserAlreadyExistsException.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/AddIfMaxRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/AddIfMaxRequest.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/AddIfMinRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/AddIfMinRequest.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/AddRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/AddRequest.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/AuthenticateRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/AuthenticateRequest.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/ClearRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/ClearRequest.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/HelpRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/HelpRequest.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/InfoRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/InfoRequest.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/RegisterRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/RegisterRequest.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/RemoveByIdRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/RemoveByIdRequest.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/Request.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/ShowRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/ShowRequest.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/UpdateRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/requests/UpdateRequest.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/AddIfMaxResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/AddIfMaxResponse.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/AddIfMinResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/AddIfMinResponse.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/AddResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/AddResponse.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/AuthenticateResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/AuthenticateResponse.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/ClearResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/ClearResponse.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/ErrorResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/ErrorResponse.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/HelpResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/HelpResponse.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/InfoResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/InfoResponse.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/RegisterResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/RegisterResponse.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/RemoveByIdResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/RemoveByIdResponse.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/Response.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/ShowResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/ShowResponse.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/UpdateResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/network/responses/UpdateResponse.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/user/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/user/User.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/common/src/main/java/common/utility/CommandName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/common/src/main/java/common/utility/CommandName.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/docker-compose.yml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/docs/Report.pdf -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/gradlew -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/gradlew.bat -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/.env.example -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/build.gradle -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/sql/drop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/sql/drop.sql -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/sql/schema.sql -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/App.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/Add.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/Add.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/AddIfMax.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/AddIfMax.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/AddIfMin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/AddIfMin.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/Authenticate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/Authenticate.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/Clear.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/Clear.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/Command.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/Describable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/Describable.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/Executable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/Executable.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/Help.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/Help.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/Info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/Info.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/Register.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/Register.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/RemoveById.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/RemoveById.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/Show.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/Show.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/commands/Update.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/commands/Update.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/dao/DragonDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/dao/DragonDAO.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/dao/DragonHeadDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/dao/DragonHeadDAO.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/dao/UserDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/dao/UserDAO.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/handlers/CommandHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/handlers/CommandHandler.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/managers/AuthManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/managers/AuthManager.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/managers/CommandManagerBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/managers/CommandManagerBuilder.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/managers/PersistenceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/managers/PersistenceManager.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/network/UDPDatagramServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/network/UDPDatagramServer.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/network/UDPServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/network/UDPServer.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/repositories/DragonRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/repositories/DragonRepository.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/java/server/utils/HibernateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/java/server/utils/HibernateUtil.java -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/server/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/server/src/main/resources/logback.xml -------------------------------------------------------------------------------- /Semester2/Programming/Labwork8/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester2/Programming/Labwork8/settings.gradle -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.o 2 | main 3 | -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar1/.gitignore -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar1/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar1/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar1/hello.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar1/hello2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar1/hello2.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar1/task05.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar1/task05.sh -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar1/task4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar1/task4.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar1/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar1/test.txt -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task1/.gitignore: -------------------------------------------------------------------------------- 1 | print_hex 2 | -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar2/task1/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task1/print_hex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar2/task1/print_hex.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar2/task2/.gitignore -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task2/lib.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar2/task2/lib.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task2/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar2/task2/test_string.py -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task2/test_string_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar2/task2/test_string_align.py -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task3/.gitignore: -------------------------------------------------------------------------------- 1 | align 2 | -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar2/task3/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task3/align.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar2/task3/align.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task4/.gitignore: -------------------------------------------------------------------------------- 1 | parse_uint* 2 | -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task4/lib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar2/task4/lib.inc -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar2/task4/test_uint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar2/task4/test_uint.py -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar3/shared/lib.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar3/shared/lib.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar3/shared/lib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar3/shared/lib.inc -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar3/task1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar3/task1/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar3/task1/stackn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar3/task1/stackn.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar3/task2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar3/task2/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar3/task2/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar3/task2/main.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar3/task3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar3/task3/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar3/task3/lib.asm: -------------------------------------------------------------------------------- 1 | ../shared/lib.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar3/task3/lib.inc: -------------------------------------------------------------------------------- 1 | ../shared/lib.inc -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar3/task3/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar3/task3/main.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar4/task1/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task1/hello.txt: -------------------------------------------------------------------------------- 1 | Hello, mmap! 2 | -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task1/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar4/task1/main.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar4/task2/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task2/hello.txt: -------------------------------------------------------------------------------- 1 | Hello, mmap! 2 | -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task2/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar4/task2/main.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar4/task3/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task3/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar4/task3/hello.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task3/string.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar4/task3/string.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar4/task4/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task4/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar4/task4/cat.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task4/mmap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar4/task4/mmap.asm -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar4/task4/secret.txt: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar5/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar5/.clangd -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar5/task1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar5/task1/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar5/task1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar5/task1/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar5/task2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar5/task2/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar5/task2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar5/task2/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar5/task3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar5/task3/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar5/task3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar5/task3/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar5/task4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar5/task4/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar5/task4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar5/task4/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar6/task1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar6/task1/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar6/task1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar6/task1/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar6/task2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar6/task2/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar6/task2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar6/task2/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar6/task3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar6/task3/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar6/task3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar6/task3/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar6/task3/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar6/task3/vector.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar6/task3/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar6/task3/vector.h -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar7/task1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar7/task1/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar7/task1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar7/task1/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar7/task2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar7/task2/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar7/task2/hack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar7/task2/hack -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar7/task2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar7/task2/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar7/task3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar7/task3/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar7/task3/hack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar7/task3/hack -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar7/task3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar7/task3/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar7/task4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar7/task4/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar7/task4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar7/task4/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar8/task1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar8/task1/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar8/task1/bad_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar8/task1/bad_print.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar8/task1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar8/task1/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar8/task2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar8/task2/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar8/task2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar8/task2/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar8/task3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar8/task3/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar8/task3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar8/task3/main.c -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar8/task4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar8/task4/Makefile -------------------------------------------------------------------------------- /Semester3/ProgrammingLanguages/Seminar8/task4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/ProgrammingLanguages/Seminar8/task4/main.c -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/.gitignore -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/README.md -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/assets/areas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/assets/areas.png -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/build.gradle -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/docs/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/docs/Report.pdf -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/gradlew -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/gradlew.bat -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/guide/README.md -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/guide/assets/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/guide/assets/project.png -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/guide/httpd-helios.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/guide/httpd-helios.conf -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/guide/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/guide/httpd.conf -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/libs/fastcgi-lib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/libs/fastcgi-lib.jar -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Labwork1' 2 | 3 | -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/src/main/java/ru/rmntim/web/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/src/main/java/ru/rmntim/web/Main.java -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/src/main/java/ru/rmntim/web/Params.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/src/main/java/ru/rmntim/web/Params.java -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/src/main/java/ru/rmntim/web/ValidationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/src/main/java/ru/rmntim/web/ValidationException.java -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/static/index.html -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/static/index.js -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/static/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/static/styles/main.css -------------------------------------------------------------------------------- /Semester3/WebProgramming/Labwork1/static/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester3/WebProgramming/Labwork1/static/styles/reset.css -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/README.md -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/schema.png -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/README.md -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/acc32/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/acc32/config.yaml -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/acc32/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/acc32/main.s -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/acc32/original.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/acc32/original.py -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/f32a/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/f32a/config.yaml -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/f32a/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/f32a/main.s -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/f32a/original.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/f32a/original.py -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/m68k/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/m68k/config.yaml -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/m68k/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/m68k/main.s -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/m68k/original.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/m68k/original.py -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/risc-iv-32/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/risc-iv-32/config.yaml -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/risc-iv-32/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/risc-iv-32/main.s -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/risc-iv-32/original.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/risc-iv-32/original.py -------------------------------------------------------------------------------- /Semester4/CSA/Labwork3/tasks/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CSA/Labwork3/tasks/run.sh -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_10.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_10.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_11.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_11.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_12.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_12.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_13.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_13.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_14.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_14.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_15.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_15.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_16.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_16.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_2.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_3.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_4.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_5.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_6.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_7.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_7.ipynb -------------------------------------------------------------------------------- /Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_8.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/CompMath/Colab Notebooks/Лабораторное_занятие_8.ipynb -------------------------------------------------------------------------------- /Semester4/OM/Labwork 2+3/Labwork2+3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/OM/Labwork 2+3/Labwork2+3.pdf -------------------------------------------------------------------------------- /Semester4/OM/Labwork 4/Labwork4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/OM/Labwork 4/Labwork4.pdf -------------------------------------------------------------------------------- /Semester4/OM/Labwork 5/Labwork5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/OM/Labwork 5/Labwork5.pdf -------------------------------------------------------------------------------- /Semester4/OM/Labwork 6/Labwork6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/OM/Labwork 6/Labwork6.pdf -------------------------------------------------------------------------------- /Semester4/Physics/Labwork1/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /Semester4/Physics/Labwork1/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork1/Cargo.lock -------------------------------------------------------------------------------- /Semester4/Physics/Labwork1/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork1/Cargo.toml -------------------------------------------------------------------------------- /Semester4/Physics/Labwork1/docs/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork1/docs/report.pdf -------------------------------------------------------------------------------- /Semester4/Physics/Labwork1/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork1/src/main.rs -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task1/lab2.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task1/lab2.pde -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task1/lab2.pde.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task1/lab2.pde.bak -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task1/lab2_output/lab2.pg8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task1/lab2_output/lab2.pg8 -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task1/lab2_output/lab2_debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task1/lab2_output/lab2_debug.txt -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task1/lab2_output/lab2_initialmesh.xfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task1/lab2_output/lab2_initialmesh.xfr -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task1/lab2_output/lab2_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task1/lab2_output/lab2_log.txt -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task1/lab2_output/lab2_restart.xfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task1/lab2_output/lab2_restart.xfr -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task2/lab2.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task2/lab2.pde -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task2/lab2.pde.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task2/lab2.pde.bak -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task2/lab2_output/lab2.pg8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task2/lab2_output/lab2.pg8 -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task2/lab2_output/lab2_debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task2/lab2_output/lab2_debug.txt -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task2/lab2_output/lab2_initialmesh.xfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task2/lab2_output/lab2_initialmesh.xfr -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task2/lab2_output/lab2_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task2/lab2_output/lab2_log.txt -------------------------------------------------------------------------------- /Semester4/Physics/Labwork2/Task2/lab2_output/lab2_restart.xfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork2/Task2/lab2_output/lab2_restart.xfr -------------------------------------------------------------------------------- /Semester4/Physics/Labwork4/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork4/go.mod -------------------------------------------------------------------------------- /Semester4/Physics/Labwork4/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork4/go.sum -------------------------------------------------------------------------------- /Semester4/Physics/Labwork4/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork4/main.go -------------------------------------------------------------------------------- /Semester4/Physics/Labwork5/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Labwork5/main.py -------------------------------------------------------------------------------- /Semester4/Physics/Physics3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Physics3.ipynb -------------------------------------------------------------------------------- /Semester4/Physics/Physics4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Physics/Physics4.ipynb -------------------------------------------------------------------------------- /Semester4/SEB/Labwork1/1c-its.srs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork1/1c-its.srs.pdf -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/.gitignore: -------------------------------------------------------------------------------- 1 | repo/ 2 | -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/Report.pdf -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit0.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit1.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit10.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit11.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit11.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit12.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit12.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit13.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit13.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit14.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit14.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit15.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit15.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit16.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit16.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit17.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit17.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit18.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit18.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit19.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit19.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit2.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit20.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit20.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit21.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit21.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit22.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit22.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit23.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit23.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit24.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit24.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit25.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit25.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit26.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit26.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit27.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit27.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit28.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit28.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit29.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit29.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit3.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit30.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit30.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit31.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit31.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit32.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit33.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit33.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit34.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit34.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit35.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit35.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit36.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit36.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit37.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit37.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit38.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit38.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit39.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit39.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit4.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit40.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit40.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit41.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit41.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit42.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit42.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit44.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit44.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit47.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit47.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit48.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit48.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit49.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit49.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit5.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit50.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit50.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit52.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit52.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit53.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit53.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit54.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit54.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit55.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit55.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit56.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit56.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit57.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit57.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit58.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit58.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit6.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit61.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit61.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit62.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit62.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit63.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit63.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit64.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit65.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit65.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit66.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit66.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit68.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit68.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit69.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit69.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit7.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit70.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit70.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit72.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit72.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit73.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit73.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit74.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit74.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit8.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/commits/commit9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/commits/commit9.zip -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/dop-impossible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/dop-impossible.sh -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/dop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/dop.sh -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/reproduce-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/reproduce-git.sh -------------------------------------------------------------------------------- /Semester4/SEB/Labwork2/reproduce-svn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/SEB/Labwork2/reproduce-svn.sh -------------------------------------------------------------------------------- /Semester4/Statistics/MatStatProj.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Statistics/MatStatProj.ipynb -------------------------------------------------------------------------------- /Semester4/Statistics/Statistics1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Statistics/Statistics1.ipynb -------------------------------------------------------------------------------- /Semester4/Statistics/Statistics2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Statistics/Statistics2.ipynb -------------------------------------------------------------------------------- /Semester4/Statistics/Statistics3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Statistics/Statistics3.ipynb -------------------------------------------------------------------------------- /Semester4/Statistics/Statistics4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester4/Statistics/Statistics4.ipynb -------------------------------------------------------------------------------- /Semester5/FEE/Book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester5/FEE/Book.pdf -------------------------------------------------------------------------------- /Semester5/FEE/Labs/ЛР1_Тимошкин_P3331.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester5/FEE/Labs/ЛР1_Тимошкин_P3331.pdf -------------------------------------------------------------------------------- /Semester5/FEE/Tasks/ЛР1_варианты_параметров_исследуемой_цепи.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester5/FEE/Tasks/ЛР1_варианты_параметров_исследуемой_цепи.pdf -------------------------------------------------------------------------------- /Semester5/FEE/Variants.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmntim/ITMO/HEAD/Semester5/FEE/Variants.pdf --------------------------------------------------------------------------------