Acknowledgements

Funding

This work is funded 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).

Our project proposal can be found here (in German).

Special thanks to Carolin Scharfenberg as well as Moritz Kreinsen and Sören-Kristian Berger for help with project coordination, administration, and the grant application process.

Code

This website is made with 🖤 and 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

make download-images
Click here to view the full Makefile of this project.
Makefile
STATIC_URL=https://cloud.uni-hamburg.de/s/aD7NTNB9f4NDorT/download
STATIC_ARCHIVE=version-control-book.zip
STATIC_DIR=static/

all: render

.PHONY: preview
preview:
    quarto preview

.PHONY: render
render: clean static
    quarto render
    
.PHONY: deploy
deploy: clean static
    quarto publish gh-pages

# download and extract images:
.PHONY: static
static:
    wget $(STATIC_URL) -O $(STATIC_ARCHIVE)
    unzip -j -o $(STATIC_ARCHIVE) -d $(STATIC_DIR)
    rm -f $(STATIC_ARCHIVE)

.PHONY: clean
clean:
    rm -rf $(STATIC_DIR)* _book/
    
.PHONY: exercises
exercises:
    sh code/code-exercises.sh

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-ShareAlike 4.0 International (CC BY-SA 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!