diff --git a/queue/001_Elementary Stochastic Caculus/README.md b/backlog/001_Elementary Stochastic Caculus/README.md similarity index 100% rename from queue/001_Elementary Stochastic Caculus/README.md rename to backlog/001_Elementary Stochastic Caculus/README.md diff --git a/queue/001_Elementary Stochastic Caculus/book.pdf b/backlog/001_Elementary Stochastic Caculus/book.pdf similarity index 100% rename from queue/001_Elementary Stochastic Caculus/book.pdf rename to backlog/001_Elementary Stochastic Caculus/book.pdf diff --git a/queue/002_A guide to Brownian motion and related stochastic processes/README.md b/backlog/002_A guide to Brownian motion and related stochastic processes/README.md similarity index 100% rename from queue/002_A guide to Brownian motion and related stochastic processes/README.md rename to backlog/002_A guide to Brownian motion and related stochastic processes/README.md diff --git a/queue/002_A guide to Brownian motion and related stochastic processes/book.pdf b/backlog/002_A guide to Brownian motion and related stochastic processes/book.pdf similarity index 100% rename from queue/002_A guide to Brownian motion and related stochastic processes/book.pdf rename to backlog/002_A guide to Brownian motion and related stochastic processes/book.pdf diff --git a/queue/003_Stochastic Calculus: An Introduction with Applications/Stochastic Calculus: An Introduction with Applications.pdf b/backlog/003_Stochastic Calculus: An Introduction with Applications/Stochastic Calculus: An Introduction with Applications.pdf similarity index 100% rename from queue/003_Stochastic Calculus: An Introduction with Applications/Stochastic Calculus: An Introduction with Applications.pdf rename to backlog/003_Stochastic Calculus: An Introduction with Applications/Stochastic Calculus: An Introduction with Applications.pdf diff --git a/scripts/create-issues-batch.py b/scripts/create-issues-batch.py deleted file mode 100644 index a6cc0b5..0000000 --- a/scripts/create-issues-batch.py +++ /dev/null @@ -1,68 +0,0 @@ -import json -import urllib.request -import os - -from dotenv import load_dotenv - -load_dotenv(override=True) - -# --- MANDATORY AUTH CONFIGURATION --- -GITEA_URL = "http://git.burke.lan:3000" # No trailing slash -TOKEN = os.getenv("GITEA_TOKEN") -OWNER = "burkkyy" -REPO = "roadmap" -MILESTONE_ID = 1 - -TASKS = [ - # {"title": "", "body": ""}, -] - -CHAPTERS = [ - "Ch.3", - "Ch.4", - "Ch.5", - "Ch.6", - "Ch.7", - "Ch.8", - "Ch.9", - "Ch.10", - "Ch.12", - "Ch.13", - "Ch.14", -] - -for ch in CHAPTERS: - TASKS.append({"title": f"{ch} - Problems", "body": f""}) - - -headers = { - "Authorization": f"token {TOKEN}", - "Content-Type": "application/json", - "Accept": "application/json" -} - -url = f"{GITEA_URL}/api/v1/repos/{OWNER}/{REPO}/issues" - -if not TASKS: - print("Warning: 'TASKS' list is empty. Please populate your task templates before running.") - exit(1) - -for task in TASKS: - title = task["title"] - body = task["body"] - - payload = { - "title": title, - "body": body, - "milestone": int(MILESTONE_ID) - } - - data = json.dumps(payload).encode('utf-8') - req = urllib.request.Request(url, data=data, headers=headers, method="POST") - - try: - with urllib.request.urlopen(req) as response: - if response.status == 201: - print(f"Successfully created issue: {title}") - except Exception as e: - print(f"Failed to create issue '{title}': {e}") \ No newline at end of file diff --git a/backlog/Advances in Financial Machine Learning.pdf b/textbooks/Advances in Financial Machine Learning.pdf similarity index 100% rename from backlog/Advances in Financial Machine Learning.pdf rename to textbooks/Advances in Financial Machine Learning.pdf diff --git a/backlog/An Introduction to Measure Theory.pdf b/textbooks/An Introduction to Measure Theory.pdf similarity index 100% rename from backlog/An Introduction to Measure Theory.pdf rename to textbooks/An Introduction to Measure Theory.pdf diff --git a/backlog/Assessing and Improving Prediction and Classification: Theory and Algorithms in C++.pdf b/textbooks/Assessing and Improving Prediction and Classification: Theory and Algorithms in C++.pdf similarity index 100% rename from backlog/Assessing and Improving Prediction and Classification: Theory and Algorithms in C++.pdf rename to textbooks/Assessing and Improving Prediction and Classification: Theory and Algorithms in C++.pdf diff --git a/backlog/Data_Driven_Science_and_Engineering.pdf b/textbooks/Data_Driven_Science_and_Engineering.pdf similarity index 100% rename from backlog/Data_Driven_Science_and_Engineering.pdf rename to textbooks/Data_Driven_Science_and_Engineering.pdf diff --git a/backlog/Detecting-Regime-Change-in-Computational-Finance-Data-Science-Machine-Learning-and-Algorithmic-Trading.pdf b/textbooks/Detecting-Regime-Change-in-Computational-Finance-Data-Science-Machine-Learning-and-Algorithmic-Trading.pdf similarity index 100% rename from backlog/Detecting-Regime-Change-in-Computational-Finance-Data-Science-Machine-Learning-and-Algorithmic-Trading.pdf rename to textbooks/Detecting-Regime-Change-in-Computational-Finance-Data-Science-Machine-Learning-and-Algorithmic-Trading.pdf diff --git a/backlog/Numerical Recipes - The Art of Scientific Computing - 3rd Edition.pdf b/textbooks/Numerical Recipes - The Art of Scientific Computing - 3rd Edition.pdf similarity index 100% rename from backlog/Numerical Recipes - The Art of Scientific Computing - 3rd Edition.pdf rename to textbooks/Numerical Recipes - The Art of Scientific Computing - 3rd Edition.pdf diff --git a/backlog/Richard Grinold, Ronald Kahn-Active Portfolio Management_ A Quantitative Approach for Producing Superior Returns and Controlling Risk-McGraw-Hill (1999).pdf b/textbooks/Richard Grinold, Ronald Kahn-Active Portfolio Management_ A Quantitative Approach for Producing Superior Returns and Controlling Risk-McGraw-Hill (1999).pdf similarity index 100% rename from backlog/Richard Grinold, Ronald Kahn-Active Portfolio Management_ A Quantitative Approach for Producing Superior Returns and Controlling Risk-McGraw-Hill (1999).pdf rename to textbooks/Richard Grinold, Ronald Kahn-Active Portfolio Management_ A Quantitative Approach for Producing Superior Returns and Controlling Risk-McGraw-Hill (1999).pdf diff --git a/backlog/Testing and Tuning Market Trading Systems.pdf b/textbooks/Testing and Tuning Market Trading Systems.pdf similarity index 100% rename from backlog/Testing and Tuning Market Trading Systems.pdf rename to textbooks/Testing and Tuning Market Trading Systems.pdf diff --git a/backlog/The Leverage Space Trading Model.pdf b/textbooks/The Leverage Space Trading Model.pdf similarity index 100% rename from backlog/The Leverage Space Trading Model.pdf rename to textbooks/The Leverage Space Trading Model.pdf diff --git a/backlog/The Mathematics of Money Management: Risk Analysis Techniques for Traders.pdf b/textbooks/The Mathematics of Money Management: Risk Analysis Techniques for Traders.pdf similarity index 100% rename from backlog/The Mathematics of Money Management: Risk Analysis Techniques for Traders.pdf rename to textbooks/The Mathematics of Money Management: Risk Analysis Techniques for Traders.pdf diff --git a/backlog/Trading Systems and Methods.pdf b/textbooks/Trading Systems and Methods.pdf similarity index 100% rename from backlog/Trading Systems and Methods.pdf rename to textbooks/Trading Systems and Methods.pdf diff --git a/backlog/Trading-on-Sentiment.pdf b/textbooks/Trading-on-Sentiment.pdf similarity index 100% rename from backlog/Trading-on-Sentiment.pdf rename to textbooks/Trading-on-Sentiment.pdf diff --git a/backlog/analysis-of-financial-time-series-copy-2ffgm3v.pdf b/textbooks/analysis-of-financial-time-series-copy-2ffgm3v.pdf similarity index 100% rename from backlog/analysis-of-financial-time-series-copy-2ffgm3v.pdf rename to textbooks/analysis-of-financial-time-series-copy-2ffgm3v.pdf