This repository will hold all submitted solutions to the assignments in the HPC course at FMI 2016.
To avoid being able to see other solutions, all the solutions MUST be stored in an encrypted form. Only the course teachers will be able to decrypt the solutions (in order to mark them).
-
Clone the repository in your GitHub account and locally
-
Install the GNU Privacy Guard from https://www.gnupg.org/download/index.html (There are binaries at the bottom of the page).
-
Make sure
gpg2
is in your PATH -
Import the assignments.pub_key
gpg2 --import assignments.pub_key
-
Trust the key
gpg2 --edit-key trendafilov.dn+hpc2016@gmail.com
At the command prompt enter
trust
and when prompted enter5
. Detailed instructions are available here
NEVER submit a clear source solution!
To prevent you from accidentally submitting a clear source solution, all C/C++ source files are git-ignored in the repo.
-
Create a folder named data//Faculty-Number-or-Name
- Assignment-Number is 0, 1, 2, ...
- Faculty-Number is your faculty number if you are an student enrolled in FMI course
- Name is your {{FirstName}}{{LastName}} if you are not a student.
See the data/sample_assignment/DimitarTrendafilov sample folder
-
Create your solution
gvim data/0/SampleStudent/solution.cpp
-
Encrypt your solution
gpg2 -a -r trendafilov.dn+hpc2016@gmail.com -e data/0/SampleStudent/solution.cpp
You can use the
encrypt.sh
andencrypt.bat
files. -
Commit and push your encrypted solution into your GitHub clone of the repository
git add data/0/SampleStudent/solution.cpp.asc git commit -m "SampleStudent's solution of assignement 0" git push
-
❗ Make a pull request against the https://github.com/dtrendafilov/HPC_FMI_2016_Assignments repository