You have a handful of exercises to complete over the course of the semester. These exercise cover both theory and practice of modern software engineering techniques. There are both written and programming components.
| Exercise # | Topics | Due Date |
|---|---|---|
| 1 | Design | Fri Jan 19 @23:59 |
| 2 | Performance | Mon Jan 29 @23:59 |
| 3 | Testing | Mon Feb 12 @23:59 |
| 4 | Symbolic Execution | Thurs Mar 7 @23:59 |
| 5 | Dynamic Analysis | Mon Mar 25 @23:59 |
| 6 | Static Analysis | Mon Apr 8 @23:59 |
A rough schedule of planned exercises is below, subject to change.
| Day | Exercises | |||||
|---|---|---|---|---|---|---|
| E1 | E2 | E3 | E4 | E5 | E6 | |
| Jan 8 | ||||||
| Jan 11 | ||||||
| Jan 15 | ||||||
| Jan 18 | ||||||
| Jan 22 | ||||||
| Jan 25 | ||||||
| Jan 29 | ||||||
| Feb 1 | ||||||
| Feb 5 | ||||||
| Feb 8 | ||||||
| Feb 12 | ||||||
| Feb 15 | ||||||
| Feb 19 | ||||||
| Feb 22 | ||||||
| Feb 26 | ||||||
| Feb 29 | ||||||
| Mar 4 | ||||||
| Mar 7 | ||||||
| Mar 11 | ||||||
| Mar 14 | ||||||
| Mar 18 | ||||||
| Mar 21 | ||||||
| Mar 25 | ||||||
| Mar 28 | ||||||
| Apr 1 | ||||||
| Apr 4 | ||||||
| Apr 8 | ||||||
| Apr 11 | ||||||
All exercises this semester can be completed in CSIL, but they use software that is not available by default. In order to make these available to you, a special Python virtual environment can be used to automatically enable and disable access to this software by default.
To start the virtual environment from within CSIL, run:
source /usr/shared/CMPT/faculty/wsumner/base/env745/bin/activateThis activates the underlying virtual environment thats makes more recent software for the course available. You can exit the virtual environment by running:
deactivateYou can even add the source line to the end of your ~/.bashrc configuration
file to enable the environment automatically when you log in
(if you so choose).
It is also possible to work within a docker container that provides the required versions of all software that we will use this semester. Note, no support for docker will be provided. If you choose to work this way, you are on your own.
To pull the latest version of the docker image for the class, you can use:
docker pull nsumner/cmpt745:spring2024The image creates a default student user and works within their
home directory. You can start a container that maps a path on your system
into a path in the container using:
docker run -ti --name=cmpt745work --ulimit='stack=-1:-1' -v << path on your system >>:/home/student/work nsumner/cmpt745:spring2024For instance, this maps the given << path on your system >> to the location /home/student/work in the container.
If you exit from the container, you can restart it again later with:
docker start -ai cmpt745work