Without Automation
Prepare your files in a practice session. When you think you have your files how you want them, click the [test] button. If everything is as expected make a note of...- the 6 character id (from the URL); suppose it is k5ZTk0
- the last traffic light's number; in this case 10
With Automation
The following HTML will create a submit button which forks from the 10th traffic light of k5ZTk0, creating a brand new group exercise with its own unique id, each time it is clicked:<form action="https://cyber-dojo.org/forker/fork_group?id=k5ZTk0&index=10" method="POST"> <input type="submit" value="Fork a new Group Exercise from id=k5ZTk0 index=10"> </form>
The following HTML will create a link which forks from the 10th traffic light of k5ZTk0, creating a brand new individual exercise with its own unique id, each time it is clicked:
<form action="https://cyber-dojo.org/forker/fork_individual?id=k5ZTk0&index=10" method="POST"> <input type="submit" value="Fork a new Individual Exercise from id=k5ZTk0 index=10"> </form>
Note that you can also use index=-1 to specify the most recent traffic-light.