Course materials for Research Software Engineering course.
In this course, you will move beyond programming, to learn how to construct reliable, readable, efficient research software in a collaborative environment. The emphasis is on practical techniques, tips, and technologies to effectively build and maintain complex code. This is a semester module (30 hours over 10 half-days), intensive, practical course. The content of each of the 10 half-day units is as follows:
Examples and exercises for this course will be provided in Python. You will therefore find it easiest to follow along if you have experience in it. Appropriate Python experience could be obtained from the Software Carpentry workshops. Previous experience with version control (such as from Software Carpentry) would be helpful.
You are required to bring your own laptop to the course as the classrooms we are using do not have desktop computers.
This repository contains the course notes as Jupyter notebooks converted into py:percent
format. This allows to edit the files as plain text as well as jupyter notebooks. To edit them as jupyter notebooks you'll need to have installed jupytext and open the ipynb.py
files as notebooks via right-click and select "open with" and "notebook" on the Jupyter file browser.
⚠ Do not run make
locally on your computer! ⚠
It will produce side effects on your global git configuration! Instead, follow the instructions below.
The site is built using gh-actions. If you'd like to test the actions locally,
you can run the actions using act
command
tool. By default this will run the action in a copy of the repository and you
won't be able to inspect the steps that happened. If you'd like to keep the
output in the current directory, use the -b
(bind) flag.
$ act -b
[Build website/Build-website] 🚀 Start image=catthehacker/ubuntu:act-latest
[Build website/Build-website] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Build website/Build-website] ⭐ Run actions/checkout@v2
[Build website/Build-website] ✅ Success - actions/checkout@v2
[Build website/Build-website] ⭐ Run actions/cache@v2
INFO[0000] ☁ git clone 'https://github.com/actions/cache' # ref=v2
[Build website/Build-website] ✅ Success - actions/cache@v2
[Build website/Build-website] ⭐ Run Install TeXLive
INFO[0000] ☁ git clone 'https://github.com/DanySK/setup-texlive-action' # ref=0.1.1
[Build website/Build-website] ✅ Success - Install TeXLive
[Build website/Build-website] ⭐ Run Setup Python
INFO[0001] ☁ git clone 'https://github.com/actions/setup-python' # ref=v2
[Build website/Build-website] ✅ Success - Setup Python
[Build website/Build-website] ⭐ Run Install dependencies
INFO[0001] ☁ git clone 'https://github.com/py-actions/py-dependency-install' # ref=v2
[Build website/Build-website] ✅ Success - Install dependencies
[Build website/Build-website] ⭐ Run Building notes
[Build website/Build-website] ✅ Success - Building notes
[Build website/Build-website] ⭐ Run Builds website
INFO[0001] ☁ git clone 'https://github.com/helaili/jekyll-action' # ref=v2
[Build website/Build-website] 🐳 docker run image=act-helaili-jekyll-action-v2:latest platform= entrypoint=[] cmd=[]
[Build website/Build-website] ✅ Success - Builds website
Alternatively, if you want to only run the jekyll build step once you've run the whole action, you can use the official jekyll containers with:
$ docker run --rm --volume="$PWD:/srv/jekyll" --volume="$PWD/vendor/bundle:/usr/local/bundle" -p 4000:4000 -it jekyll/jekyll:latest jekyll serve
and open http://localhost:4000/rsd-engineeringcourse (or the link provided).
Note that this is mounting the bundle
directory where act
will create them.
Using jupytext
we've converted all the jupyter notebooks into plain text python files (py:percent) with:
# First cleaned all outputs and commited it
nbstripout --extra-keys metadata.kernelspec ch*/*ipynb
# convert them
find ./ -iname '*ipynb' -exec jupytext --opt notebook_metadata_filter="kernelspec,jupytext,jekyll" --to py:percent {} -o {}.py \;
# then deleted the ipynb
find ./ -iname '*ipynb' -delete