- To solve this exercise, two collaborators are required. You will both edit the Car product line, but with different ideas and intentions.
- Please visit the following link to begin: http://18.159.9.85:8080/#/Examples/Car
You can also open the feature model manually withTools > Command Palette > Join collaborative session > Examples > Car. - Make sure in the top right corner that you and your partner are undisturbed by others (as this instance of the tool is public).
- Assign one collaborator role A and the other role B. These will be used in the tasks below.
- While editing, you are free to discuss anything with your partner (but you don't have to).
- In solving these tasks, you are allowed to use all operations that the editor provides (including restructuring of subtrees or modification of constraints).
- After this exercise, please use the survey form to share your impressions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| musescore_export: | |
| stage: deploy | |
| image: ubuntu:focal | |
| before_script: | |
| - 'which ssh-agent || ( apt-get update -qy && apt-get install openssh-client -qqy )' | |
| - eval `ssh-agent -s` | |
| - echo "${SSH_PRIVATE_KEY}" | tr -d '\r' | ssh-add - > /dev/null | |
| - mkdir -p ~/.ssh | |
| - chmod 700 ~/.ssh | |
| - echo "$SSH_PUBLIC_KEY" >> ~/.ssh/id_rsa.pub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Go to the cache entry of the file: about:cache-entry?storage=disk&context=&eid=&uri=<the URI> | |
| Copy the entire HEX dump into an editor that can handle large files and save as "file.dat". Notepad++ works for me. | |
| cat file.dat | cut -d: -f2 | cut -d" " -f2-34 > file.hex && xxd -r -p file.hex my_file.mp3 (or whatever suffix the file has) |