Every time you start up your computer, launch quiz applications to learn through repetition.
I personnaly use it for vocabulary (In French). I also put a example with english basics.
If you happen to come across this Git repository and you create your own revision exercises, feel free to send them to me. It could be interesting to have a list of exercises to work on.
Boot-Learning-Apps/
├── run_all_scripts.py # Script to run all learning scripts.
├── scripts/
│ ├── english_basics.py # Example: English basics.
│ ├── vocabulary.py # Example: Tools to practice vocabulary (current in French)
│ ├── vocabulaire.xlsx # Excel file containing vocabulary to study.
- Python 3.x
- Required library:
pandas(to handle the Excel file)
To install dependencies:
pip install pandas- Open a terminal and navigate to the project folder.
- To run all learning scripts:
python run_all_scripts.py
- To run a specific script:
python scripts/english_basics.py python scripts/vocabulary.py
To automatically launch the learning apps when your computer starts:
- Create a shortcut to
run_all_scripts.py.- You have example for Windows here.
- Modify the shortcut properties to set the correct script and python path (look like
C:\Python313\python.exe "C:\Users\your\path\to\run_all_scripts.py").
- Place the shortcut in your system's startup folder:
- Windows: Press
Win + R, typeshell:startup, and place the shortcut in the opened folder. - macOS/Linux: Use system-specific startup application managers or add a command to your shell profile.
- Windows: Press
- Ensure Python and required libraries are installed and accessible.
Now, your learning scripts will run automatically every time your computer boots up.
Feel free to suggest improvements or add new exercises.