diff --git a/status.py b/status.py deleted file mode 100644 index ba8a33d..0000000 --- a/status.py +++ /dev/null @@ -1,13 +0,0 @@ -with open("LINKS.md", "r") as list: - links = list.readlines() - -notDone = 0 -done = 0 -for link in links: - if link.startswith("- [ ]"): - notDone += 1 - elif link.startswith("- [x]"): - done += 1 - -percentage = done / (done + notDone) * 100 -print(f"{done} done, {notDone} not done, {percentage:.2f}% done") diff --git a/tester.nu b/tester.nu deleted file mode 100644 index b9e94d5..0000000 --- a/tester.nu +++ /dev/null @@ -1 +0,0 @@ -curl --header "Content-Type: application/json" --request POST --data '{"username":"xyz","password":"xyz"}' http://localhost:3000/api/login \ No newline at end of file