- Prerequisites
- Experiences
- Assessments
Modules Topics covered in this class.
Setup requirements for the course practicals.
2. Version Control
3. testing your code, 4. software projects, 5. construction and design, 6. advanced programming techniques, 7. programming for speed.
Navigation Menu
Search code, repositories, users, issues, pull requests..., provide feedback.
We read every piece of feedback, and take your input very seriously.
Saved searches
Use saved searches to filter your results more quickly.
To see all available qualifiers, see our documentation .
- Notifications You must be signed in to change notification settings
Course materials for Research Software Engineering course.
UCL/rsd-engineeringcourse
Folders and files, repository files navigation, rsd-engineeringcourse.
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:
- Code management. Distributed version control. Git. Github
- Collaborating around code. Issue tracking. Code review and pull requests. Branches and merging
- Introduction to Python and Scientific programming
- Analysing and plotting Research data
- Testing scientific software. Unit testing, regression testing. Test-driven design. Expectations and assertions. Mocking. Build-and-test servers. Negative testing. Sensible error messages. Setting up Continuous Integration.
- Documenting software projects. Managed logging. Debugging and debuggers. Coverage measurement. Finding errors in the past.
- Writing libraries and creating packages. Software licenses. Citing software. Software sustainability. Comments. Coding conventions.
- Software as engineering. Pragmatic use of diagram languages. Requirements engineering. Agile and Waterfall. Functional and architectural design.
- Best practice in construction. Design and development. Object-oriented design.
- Analysing performance. Profiling code. Developing faster code.
Prerequisites:
- You must have reasonable experience in at least one compiled language, such as C++, C, or Fortran, and at least one dynamic language, such as Python, Ruby, Matlab or R.
- You must also have experience of the Unix shell.
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.
Contributing to this repository
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.
Testing it locally
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.
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:
and open http://localhost:4000/rsd-engineeringcourse (or the link provided). Note that this is mounting the bundle directory where act will create them.
Migration from jupyter notebooks to py:percent
Using jupytext we've converted all the jupyter notebooks into plain text python files (py:percent) with:
Contributors 22
- Python 98.7%