This repository contains all of the code and data related to the Fall 2022 (E22) course Programming for the Humanities which is an internationalisation elective at Aarhus University, Faculty of Arts. The course is taught by Center for Humanities Computing Aarhus, any inquiries can be addressed to CHCAA
This repository is in active development, with new material being pushed on a weekly basis.
For running in virtual environment (recommended) and assuming python3.6+ is installed.
$ sudo pip3 install virtualenv
$ virtualenv -p /usr/bin/python3 venv
$ source venv/bin/activate
Clone repository and install requirements
$ git clone https://github.com/CHCAA-EDUX/Programming-for-the-Humanities-E22.git
$ pip3 install -r requirements.txt
[TBA] for your desired CUDA version.
This repository has the following directory structure:
.
├── assignments
├── CURRICULUM.md
├── dat # data for exercises and assignments
├── doc # relevant documents
├── examples # examples notebook
├── exercises # tasks for code cafés
├── lessons # lecture lessons in md
├── reading # readings for lectures
├── LICENSE.md
├── README.md
├── slides # slides from class in pdf
└── src # py code snippets
See Curriculum
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request 😈
Kristoffer L. Nielbo
This project is licensed under the MIT License - see the LICENSE.md file for details
Al Sweigart