From 49962c3815fa87bc4663ffbf4faf45db3ebe0732 Mon Sep 17 00:00:00 2001 From: Halyna Romanyshyn Date: Thu, 15 Jan 2026 00:48:53 +0100 Subject: [PATCH 1/9] task 1 --- task-1/setup.sh | 51 +++++++++++++++++++++++++++++++++++++- task-2/github-username.txt | 3 ++- 2 files changed, 52 insertions(+), 2 deletions(-) diff --git a/task-1/setup.sh b/task-1/setup.sh index 4067509..e7f4ee8 100644 --- a/task-1/setup.sh +++ b/task-1/setup.sh @@ -1 +1,50 @@ -# Write your code here \ No newline at end of file +# Write your code here +echo "Creating project..." +mkdir project +cd project +git init +touch README.md +mkdir resources +touch settings.conf +mkdir src +cd resources +touch family picture.jpg +touch icon.png +touch logo.png +cd .. +cd src +mkdir database +mkdir profile +touch program.java +cd .. +git status +git add . +git commit -m "Initial commit" +git push +sleep 3 +echo "Setup project..." +echo "Welcome to my project" > README.md +cd src +rm -r profile +cd .. +cd resources +rm "family picture.jpg" +cd .. +git status +git add . +git commit -m "write welcome text to README, remove profile directory , remove family_picture.jpg" +git push +sleep 3 +cd resources +echo "Setup javascript..." +mv program.java program.js +echo "console.log('JavaScript works!');" > program.js +node program.js +cd .. +git status +git add . +git commit -m "rename program.java to program.js , add log line to program.js" +git push +cd ~ +ls -la +echo "All done!" diff --git a/task-2/github-username.txt b/task-2/github-username.txt index 5eabca7..421b7d4 100644 --- a/task-2/github-username.txt +++ b/task-2/github-username.txt @@ -1 +1,2 @@ - \ No newline at end of file + +halyna1995 \ No newline at end of file From d42831fcad89805b3ba0698bccfcf6f17f209c40 Mon Sep 17 00:00:00 2001 From: Halyna Romanyshyn Date: Thu, 15 Jan 2026 00:57:15 +0100 Subject: [PATCH 2/9] task 1-2 --- task-2/github-username.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/task-2/github-username.txt b/task-2/github-username.txt index 421b7d4..bec0a2f 100644 --- a/task-2/github-username.txt +++ b/task-2/github-username.txt @@ -1,2 +1,2 @@ - -halyna1995 \ No newline at end of file + +https://github.com/halyna1995/halyna1995/blob/main/README.md \ No newline at end of file From 6e38a1a7f94f7f2535a54affbfc891e639b16ed4 Mon Sep 17 00:00:00 2001 From: Halyna Romanyshyn <30292604+halyna1995@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:29:56 +0100 Subject: [PATCH 3/9] Update task-1/setup.sh Co-authored-by: Jim Cramer --- task-1/setup.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/task-1/setup.sh b/task-1/setup.sh index e7f4ee8..df5c0f3 100644 --- a/task-1/setup.sh +++ b/task-1/setup.sh @@ -41,7 +41,6 @@ mv program.java program.js echo "console.log('JavaScript works!');" > program.js node program.js cd .. -git status git add . git commit -m "rename program.java to program.js , add log line to program.js" git push From 8565e41853aca081135ed812a364e7898d14f5d4 Mon Sep 17 00:00:00 2001 From: Halyna Romanyshyn <30292604+halyna1995@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:30:09 +0100 Subject: [PATCH 4/9] Update task-1/setup.sh Co-authored-by: Jim Cramer --- task-1/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task-1/setup.sh b/task-1/setup.sh index df5c0f3..4fc5b0e 100644 --- a/task-1/setup.sh +++ b/task-1/setup.sh @@ -1,4 +1,4 @@ -# Write your code here +#!/bin/bash echo "Creating project..." mkdir project cd project From e92ac6fc77c6ba22e33fae1651c9d7fc4c734e39 Mon Sep 17 00:00:00 2001 From: Halyna Romanyshyn <30292604+halyna1995@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:30:32 +0100 Subject: [PATCH 5/9] Update task-1/setup.sh Co-authored-by: Jim Cramer --- task-1/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task-1/setup.sh b/task-1/setup.sh index 4fc5b0e..5d8e21e 100644 --- a/task-1/setup.sh +++ b/task-1/setup.sh @@ -8,7 +8,7 @@ mkdir resources touch settings.conf mkdir src cd resources -touch family picture.jpg +touch "family picture.jpg" touch icon.png touch logo.png cd .. From 0481d224b7093c879b2c840c6ea7f8dcd4503fee Mon Sep 17 00:00:00 2001 From: Halyna Romanyshyn <30292604+halyna1995@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:31:13 +0100 Subject: [PATCH 6/9] Update task-1/setup.sh Co-authored-by: Jim Cramer --- task-1/setup.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/task-1/setup.sh b/task-1/setup.sh index 5d8e21e..56d56c4 100644 --- a/task-1/setup.sh +++ b/task-1/setup.sh @@ -30,7 +30,6 @@ cd .. cd resources rm "family picture.jpg" cd .. -git status git add . git commit -m "write welcome text to README, remove profile directory , remove family_picture.jpg" git push From df436bf91dc54b0acf861a8a875771742c727c39 Mon Sep 17 00:00:00 2001 From: Halyna Romanyshyn <30292604+halyna1995@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:31:27 +0100 Subject: [PATCH 7/9] Update task-1/setup.sh Co-authored-by: Jim Cramer --- task-1/setup.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/task-1/setup.sh b/task-1/setup.sh index 56d56c4..a40ea2c 100644 --- a/task-1/setup.sh +++ b/task-1/setup.sh @@ -17,7 +17,6 @@ mkdir database mkdir profile touch program.java cd .. -git status git add . git commit -m "Initial commit" git push From 60b908503c470a4261daf2b9d914db75d8c02ff2 Mon Sep 17 00:00:00 2001 From: Halyna Romanyshyn <30292604+halyna1995@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:56:13 +0100 Subject: [PATCH 8/9] Update GitHub username format in text file --- task-2/github-username.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/task-2/github-username.txt b/task-2/github-username.txt index bec0a2f..b89f3e0 100644 --- a/task-2/github-username.txt +++ b/task-2/github-username.txt @@ -1,2 +1 @@ - -https://github.com/halyna1995/halyna1995/blob/main/README.md \ No newline at end of file +halyna1995 From 053f6886cfe3a62f08888bcde2d28e9d91db01f4 Mon Sep 17 00:00:00 2001 From: Halyna Romanyshyn <30292604+halyna1995@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:56:46 +0100 Subject: [PATCH 9/9] Add halyna1995.txt to task-2 directory --- task-2/{github-username.txt => halyna1995.txt} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename task-2/{github-username.txt => halyna1995.txt} (100%) diff --git a/task-2/github-username.txt b/task-2/halyna1995.txt similarity index 100% rename from task-2/github-username.txt rename to task-2/halyna1995.txt