From bd5948df3fb7fea8ca4eab70e06520313fa1b8ad Mon Sep 17 00:00:00 2001 From: stephenmcintyre Date: Sun, 31 Aug 2025 00:11:09 +1200 Subject: [PATCH 1/2] Fix the examples link in the readme.md file. --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 3310f3c..d1f1051 100644 --- a/readme.md +++ b/readme.md @@ -34,7 +34,7 @@ pip install git+https://github.com/KEDRI-AUT/NeuCube-Py.git ## Getting Started -To start using Neucube Py, you can refer to the [examples](examples/) directory, which contains Jupyter notebooks demonstrating various use cases and applications of the Neucube algorithm. +To start using Neucube Py, you can refer to the [examples](https://github.com/KEDRI-AUT/NeuCube-Py/blob/master/wrist_movement_demo.ipynb) directory, which contains Jupyter notebooks demonstrating various use cases and applications of the Neucube algorithm. You can also try out a running example using Google Colab by clicking the button below: From 07e1c94188dbedb175632436732cb91af0fecd1b Mon Sep 17 00:00:00 2001 From: stephenmcintyre Date: Sun, 31 Aug 2025 00:26:04 +1200 Subject: [PATCH 2/2] Visual studio code setup. --- .gitignore | 10 +++++++++- .vscode/settings.json | 3 +++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index c2af824..48c3ff6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,11 @@ # Visual Studio cache files .vs/ -.pyc/ \ No newline at end of file +.venv/ +notes.txt + +# Python cache and temp files +__pycache__/ +*.pyc +*.pyo +*.pyd +.ipynb_checkpoints/ \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a6f7c3f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.defaultInterpreterPath": "${workspaceFolder}/.venv/Scripts/python.exe" +} \ No newline at end of file