Acknowledgements

Funding

This project is funded by the “Claussen-Simon-Fund for Science & Higher Education 2024” by the Claussen-Simon-Foundation, in Hamburg, Germany.

The project is also partly supported by the Digital and Data Literacy in Teaching Lab (DDLitLab), an initiative by the Center for Interdisciplinary Study Programs (Zentrum für Interdisziplinäre Studienangebote; ISA-Zentrum) at the University of Hamburg, Germany. The Digital and Data Literacy in Teaching Lab program is in turn funded by the Stiftung Innovation in der Hochschullehre (details about the funding program can be found here).

Code

This website is made with Quarto. The source code of this website can be found on GitHub.

Images

Images are stored on Nextcloud (UHH Cloud). They can be retrieved using

Code
make images
Click here to view the full Makefile of this project.
Makefile
IMAGES_URL=https://cloud.uni-hamburg.de/s/xxswokojCCN49em/download
IMAGES_ARCHIVE=quarto-book-images.zip
IMAGES_DIR=images/

all: render

.PHONY: preview
preview:
    quarto preview

.PHONY: render
render: clean images
    quarto render

.PHONY: pdf
pdf: clean images
    quarto render --profile pdf
    
.PHONY: deploy
deploy: clean images
    quarto publish gh-pages

.PHONY: images
images:
    wget $(IMAGES_URL) -O $(IMAGES_ARCHIVE)
    unzip -j -o $(IMAGES_ARCHIVE) -d $(IMAGES_DIR)
    rm -f $(IMAGES_ARCHIVE)

.PHONY: clean
clean:
    rm -rf $(IMAGES_DIR)* _book/

Analytics

We use Plausible for website analytics. Plausible is an “intuitive, lightweight and open source web analytics”, does not use cookies and is fully compliant with GDPR, CCPA and PECR.

License

All contents are licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license, unless indicated otherwise.

Contact

Did you spot an error? Is there an issue with the website? Do you have feedback, questions or comments? We would love to hear from you! Please open an issue on GitHub or send an email. Thank you!