From 6eef8b30fcae0871162084c5264f03d888c588ca Mon Sep 17 00:00:00 2001
From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com>
Date: Sun, 20 Oct 2024 09:14:40 +0200
Subject: [PATCH 22/33] Update README.md
---
README.md | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/README.md b/README.md
index c664d89..774335b 100644
--- a/README.md
+++ b/README.md
@@ -11,6 +11,12 @@
+
+
# Python-Template
From ed11accb93423962de2215f9aebac3b4fbb6a08e Mon Sep 17 00:00:00 2001
From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com>
Date: Sun, 20 Oct 2024 12:19:58 +0200
Subject: [PATCH 23/33] Add files via upload
---
clear-commits.py | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
create mode 100644 clear-commits.py
diff --git a/clear-commits.py b/clear-commits.py
new file mode 100644
index 0000000..2654a11
--- /dev/null
+++ b/clear-commits.py
@@ -0,0 +1,28 @@
+import subprocess
+
+def run_command(command):
+ """Run a command in the shell and print the output."""
+ try:
+ result = subprocess.run(command, check=True, text=True, capture_output=True)
+ print(result.stdout)
+ except subprocess.CalledProcessError as e:
+ print(f"Error: {e.stderr}")
+ exit(1)
+
+# Switch to a new orphan branch
+run_command(["git", "checkout", "--orphan", "new_branch"])
+
+# Stage all changes
+run_command(["git", "add", "."])
+
+# Commit changes
+run_command(["git", "commit", "-m", "new_commit"])
+
+# Delete the old main branch
+run_command(["git", "branch", "-D", "main"])
+
+# Rename the new branch to main
+run_command(["git", "branch", "-m", "main"])
+
+# Force push to the remote main branch
+run_command(["git", "push", "-f", "origin", "main"])
\ No newline at end of file
From 0ad4e3507eaecd0b9eff1d48f26d5c930aaefd1d Mon Sep 17 00:00:00 2001
From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com>
Date: Sun, 20 Oct 2024 12:23:18 +0200
Subject: [PATCH 24/33] Update README.md
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index 774335b..fa375c4 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,5 @@
[](https://x.com/NorowaretaGemu)
+[](https://opensource.org/licenses/MIT)
From e7a2b8945d1e3595e7c86e2b4d3a84b6e16284d1 Mon Sep 17 00:00:00 2001
From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com>
Date: Sun, 20 Oct 2024 12:24:15 +0200
Subject: [PATCH 25/33] Update run.ps1
---
run.ps1 | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/run.ps1 b/run.ps1
index e69de29..e439efd 100644
--- a/run.ps1
+++ b/run.ps1
@@ -0,0 +1,15 @@
+# Define the virtual environment directory
+$VENV_DIR = "psdenv"
+
+# Check if the virtual environment directory exists
+if (-Not (Test-Path $VENV_DIR)) {
+ # Create the virtual environment
+ python -m venv $VENV_DIR
+}
+
+# Activate the virtual environment and run the Python script
+& "$VENV_DIR\Scripts\Activate.ps1"
+python main.py
+
+# Pause for user input before closing (optional)
+Read-Host "Press Enter to continue..."
From 9990245a456d2e4cbdd1a7ecdf78b098bc98a458 Mon Sep 17 00:00:00 2001
From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com>
Date: Sun, 20 Oct 2024 16:06:37 +0200
Subject: [PATCH 26/33] Update README.md
---
README.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index fa375c4..5ce3526 100644
--- a/README.md
+++ b/README.md
@@ -13,10 +13,11 @@
+