From 32720049107f20d0ffa2216118aba5fcccccd3e1 Mon Sep 17 00:00:00 2001 From: Yusup Rozimemet Date: Fri, 16 Jan 2026 15:28:46 +0100 Subject: [PATCH 1/2] week 1 tasks --- task-1/setup.sh | 45 +++++++++++++++++++++++++++++++++++++- task-2/github-username.txt | 2 +- 2 files changed, 45 insertions(+), 2 deletions(-) diff --git a/task-1/setup.sh b/task-1/setup.sh index 4067509..33c24b9 100644 --- a/task-1/setup.sh +++ b/task-1/setup.sh @@ -1 +1,44 @@ -# Write your code here \ No newline at end of file +#!/bin/bash +rm -rf project + +echo "Creating project..." +mkdir "project" +cd project +git init + +touch README.md +mkdir resources +touch "resources/family picture.jpg" +touch "resources/icon.png" +touch "resources/logo.png" +touch settings.conf +mkdir src +mkdir src/database +mkdir src/profile +touch src/program.java + +git add . +git commit -m "initial commit" + +sleep 3 +echo "Setup project..." +echo "Welcome to my project" > README.md +rm -r src/profile +rm resources/"family picture.jpg" + +git add . +git commit -m "profile folder and family picture.jpg were removed." + +sleep 3 +ls resources +ls -la resources +echo "Setup javascript..." + +mv src/program.java src/program.js +echo "console.log('JavaScript works!');" > src/program.js +node src/program.js + +git add . +git commit -m "Renamed to program.js, added JS code and executed" +ls -la ~/ +echo "All done!" diff --git a/task-2/github-username.txt b/task-2/github-username.txt index 5eabca7..b5e1620 100644 --- a/task-2/github-username.txt +++ b/task-2/github-username.txt @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file From a54442e3b078b2e08290412bad6c04cc318f7369 Mon Sep 17 00:00:00 2001 From: Yusup Rozimemet <82045682+Yusuprozimemet@users.noreply.github.com> Date: Wed, 21 Jan 2026 14:36:08 +0100 Subject: [PATCH 2/2] Update task-2/github-username.txt Co-authored-by: Jim Cramer --- task-2/github-username.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task-2/github-username.txt b/task-2/github-username.txt index b5e1620..a990371 100644 --- a/task-2/github-username.txt +++ b/task-2/github-username.txt @@ -1 +1 @@ - \ No newline at end of file +Yusuprozimemet \ No newline at end of file