From b4cb793c33f47c87eb146ed575b5d9c49722fdba Mon Sep 17 00:00:00 2001 From: Jedrzej Slupski Date: Sun, 14 Jan 2024 19:07:04 +0100 Subject: [PATCH 1/5] test dodac --- .gitignore | 6 ++++++ test.py | 0 2 files changed, 6 insertions(+) create mode 100644 .gitignore create mode 100644 test.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f9bb5c8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +venv/ +__pycache__/ +*.pyc +*.pyo +*.pyd +.DS_Store diff --git a/test.py b/test.py new file mode 100644 index 0000000..e69de29 From 4cbbda8ad133c2f53d7db176b9cf0607a05b4d35 Mon Sep 17 00:00:00 2001 From: Jedrzej Slupski Date: Sun, 14 Jan 2024 19:09:59 +0100 Subject: [PATCH 2/5] README --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e69de29..70f4335 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,4 @@ +python -m venv venv +Go into venv -> Scripts -> activate +pip install -r requirements.txt +python script.py From bb190133fd49216757a664a1564a103fe5346caf Mon Sep 17 00:00:00 2001 From: Jedrzej Slupski Date: Sun, 14 Jan 2024 19:31:52 +0100 Subject: [PATCH 3/5] dodane --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 70f4335..3b28f86 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ python -m venv venv -Go into venv -> Scripts -> activate +source venv/bin/activate pip install -r requirements.txt python script.py From 351fd9cad75ef1d06940519cce40c5c07aadae7a Mon Sep 17 00:00:00 2001 From: Franciszek Kornobis Date: Sun, 14 Jan 2024 19:37:29 +0100 Subject: [PATCH 4/5] Update 'script.py' --- script.py | 1 + 1 file changed, 1 insertion(+) diff --git a/script.py b/script.py index d80d438..9c6f931 100644 --- a/script.py +++ b/script.py @@ -1,3 +1,4 @@ import numpy as np print(np.eye(3)) +print(np.eye(4)) \ No newline at end of file From d4c78e1110aad09c79e474f060e7b9f7cd97470b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20S=C5=82upski?= Date: Sun, 14 Jan 2024 19:38:30 +0100 Subject: [PATCH 5/5] Zaktualizuj 'script.py' --- script.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script.py b/script.py index 9c6f931..2eed101 100644 --- a/script.py +++ b/script.py @@ -1,4 +1,5 @@ import numpy as np print(np.eye(3)) -print(np.eye(4)) \ No newline at end of file +print(np.eye(4)) +print(np.eye(5)) \ No newline at end of file