|
| 1 | +# Writing a New Project |
| 2 | +(these notes are under construction!) |
| 3 | + |
| 4 | +## 0. Introduction |
| 5 | + |
| 6 | +This guide explains how to write a new project for our curriculum. If you encounter a problem, remember that you can look at existing projects to see how it's done! |
| 7 | + |
| 8 | +If you're writing a project and need additional support, you can email [email protected]. |
| 9 | + |
| 10 | +__To contribute a project to our curriculum, you'll need your own copy of the projects. There are instructions on how to do this in the main [contributing](contributing.md) notes.__ |
| 11 | + |
| 12 | +## 1. Using the project template. |
| 13 | + |
| 14 | ++ In the projects repository, find the folder called 'Project Template'. |
| 15 | + |
| 16 | + |
| 17 | + |
| 18 | ++ Copy and paste this folder, and rename the copied folder with the name of your project. |
| 19 | + |
| 20 | ++ You should see 2 files with `.md` extensions: |
| 21 | + |
| 22 | + + `Project Template.md` - the file containing the project instructions; |
| 23 | + + `Project Template - notes.md` - the file containing the club leader notes. |
| 24 | + |
| 25 | + |
| 26 | + |
| 27 | +These files contain 'markdown', which is used to generate projects on the Code Club website. Rename these 2 files with the name of your project. |
| 28 | +<a name="step-2"></a> |
| 29 | +## 2. Write your project. |
| 30 | + |
| 31 | +Open the `[project name].md` file in a text editor. You can edit this document by adding in your project instructions. Your project may contain some (or all) of the following: |
| 32 | + |
| 33 | +### File Properties |
| 34 | + |
| 35 | +You should change the title and the language of the project (if necessary). |
| 36 | + |
| 37 | +``` |
| 38 | +--- |
| 39 | +title: Project Template |
| 40 | +level: Scratch + |
| 41 | +language: en-GB |
| 42 | +stylesheet: scratch |
| 43 | +embeds: "*.png" |
| 44 | +materials: ["Club Leader Resources/*","Project Resources/*"] |
| 45 | +... |
| 46 | +``` |
| 47 | + |
| 48 | +### Activities |
| 49 | + |
| 50 | +You should break your instructions down into separate activities. Each activity should have an 'activity' heading, which can be added by using the following markdown: |
| 51 | + |
| 52 | +`#Step 1: Step name goes here {.activity}` |
| 53 | + |
| 54 | +Underneath this heading you should briefly explain the step children are about to undertake. |
| 55 | + |
| 56 | +### Activity Checklist |
| 57 | + |
| 58 | +Each step should contain a checklist of activities. To display the 'checklist' graphic, you should include this markdown underneath the activity description: |
| 59 | + |
| 60 | +`## Activity Checklist {.check}` |
| 61 | + |
| 62 | +### Activity Steps |
| 63 | + |
| 64 | +Each step should start with a `+` or a `*`, which will give the step a checkbox. If your step contains multiple paragraphs, or an image, these should be indented by pressing the 'Tab' key. |
| 65 | + |
| 66 | +``` |
| 67 | ++ Step 1 |
| 68 | ++ Step 2 |
| 69 | +``` |
| 70 | + |
| 71 | +### Bold and Italic Text |
| 72 | + |
| 73 | +You can add text in _italics_ by placing an underscore or a star around the text: |
| 74 | + |
| 75 | +`_italicised text_` or `*italicised text*` |
| 76 | + |
| 77 | +You can add text in __bold__ by placing two underscores or stars around the text: |
| 78 | + |
| 79 | +`__bold text__` or `**bold text**` |
| 80 | + |
| 81 | +### Code |
| 82 | + |
| 83 | +You can add some code to your notes `like this`, by adding backticks (`` ` ``) around the text. |
| 84 | + |
| 85 | +`` here is some code: `move (10) steps` `` |
| 86 | + |
| 87 | +You can also format Scratch code, so that the colour matches the associated Scratch block colour (for example `{.blockdata}` for variables). There are some examples of this in the Scratch project template. |
| 88 | + |
| 89 | +`` here is a `score` {.blockdata} variable `` |
| 90 | + |
| 91 | + |
| 92 | + |
| 93 | +### Images |
| 94 | + |
| 95 | +The markdown needed to add an image is: |
| 96 | + |
| 97 | +`` |
| 98 | + |
| 99 | +The path can be omitted if the image is in the same folder as the project markdown file. |
| 100 | + |
| 101 | +### Hyperlinks |
| 102 | + |
| 103 | +A hyperlink can be added through similar markdown: |
| 104 | + |
| 105 | +`[link text](url)` |
| 106 | + |
| 107 | +### Testing |
| 108 | + |
| 109 | +You should regularly ask children to test their project, so that they can see the effects of the code they're creating. You can even use these points as opportunities to fix bugs and improve code. |
| 110 | + |
| 111 | +The markdown for adding in a test point is: |
| 112 | + |
| 113 | +`## Test your project {.flag}` |
| 114 | + |
| 115 | + |
| 116 | + |
| 117 | +### Saving |
| 118 | + |
| 119 | +You should also regularly remind children to save their work, by using this markdown: |
| 120 | + |
| 121 | +`## Save your project {.save}` |
| 122 | + |
| 123 | + |
| 124 | + |
| 125 | +### Challenges |
| 126 | + |
| 127 | +You should add at least 1 challenge, to allow children to apply what they've during the project. You can ask children to fix a problem or improve or adapt their project in some way. The markdown for adding a challenge is: |
| 128 | + |
| 129 | +`## Challenge: Challenge name {.challenge}` |
| 130 | + |
| 131 | + |
| 132 | + |
| 133 | +### Scratch Code Blocks |
| 134 | + |
| 135 | +For Scratch projects, code blocks should be contained within 3 backticks, for example: |
| 136 | + |
| 137 | +``` |
| 138 | +```blocks |
| 139 | + when flag clicked |
| 140 | + point in direction (120 v) |
| 141 | + set pen color to [#FF0000] |
| 142 | + pen down |
| 143 | + forever |
| 144 | + move (1) steps |
| 145 | + if on edge, bounce |
| 146 | + end``` |
| 147 | +``` |
| 148 | + |
| 149 | +The code above produces the following image: |
| 150 | + |
| 151 | + |
| 152 | + |
| 153 | +You can [test](http://scratchblocks.codeclub.org.uk) your Scratch code, and there is a [guide](http://wiki.scratch.mit.edu/wiki/Block_Plugin/Syntax) to adding Scratch blocks to your project notes. You can even automatically generate Scratch code [directly from your online Scratch project](http://scratchblocks.codeclub.org.uk/generator/). |
| 154 | + |
| 155 | +### Embedded Scratch Projects |
| 156 | + |
| 157 | +For Scratch projects, you can also add an embedded version of the final project, so that children can see what they are working towards. Don't worry, children won't be able to see the code! This is done by adding the following HMTL after the introduction: |
| 158 | + |
| 159 | +``` |
| 160 | +<div class="scratch-preview"> |
| 161 | + <iframe allowtransparency="true" width="485" height="402" src="http://scratch.mit.edu/projects/embed/32722912/?autostart=true" frameborder="0"></iframe> |
| 162 | + <img src="project-final.png"> |
| 163 | +</div> |
| 164 | +``` |
| 165 | + |
| 166 | +Simply replace the URL with the URL of your finished project, and remember to include a static screenshot image for the PDF version of the project notes. |
| 167 | + |
| 168 | + |
| 169 | + |
| 170 | +## 3. Notes for Club Leaders |
| 171 | + |
| 172 | +Each project should have an associated 'notes' markdown file, giving the volunteer useful information for using the project with their Code Club. |
| 173 | + |
| 174 | +The project notes template can simply be modified for your project, and contains the following sections: |
| 175 | + |
| 176 | +### Notes File Properties |
| 177 | +You should change the title and the language of the project (if necessary). |
| 178 | + |
| 179 | +``` |
| 180 | +--- |
| 181 | +title: Project Template — Notes for Club Leaders |
| 182 | +language: en-GB |
| 183 | +embeds: "*.png" |
| 184 | +... |
| 185 | +``` |
| 186 | + |
| 187 | +### Introduction |
| 188 | +Explain the project, focusing on what children will learn. Remember that these notes will be read by club leaders and not children. |
| 189 | + |
| 190 | +### Resources |
| 191 | +You should include a completed version of your project to help club leaders. This file should be in the folder called 'Club Leader Resources'. You'll need to change the filenames in the notes to match the name of your project. |
| 192 | + |
| 193 | +For Scratch projects, you should also link to an online version of your completed project. Again, you should replace the URL of the sample project with a link to your completed project. |
| 194 | + |
| 195 | +If your project requires any additional resources (such as images), you should add them to the folder called 'Project Resources'. Again, modify the names of any files in the notes. |
| 196 | + |
| 197 | +### Learning Objectives |
| 198 | +List the skills that your new project teaches or consolidates. This can be a key programming skill (such as variables or loops), or a general skill like game design, problem solving, collaboration, etc. |
| 199 | + |
| 200 | +### Challenges |
| 201 | +You should add at least 1 challenge to your project, to allow children to apply what they've learnt during the project. You can even ask children to fix a problem or improve or adapt their project in some way. |
| 202 | + |
| 203 | +List the names of the challenges in your project, along with a brief description of the activity children will undertake. |
| 204 | + |
| 205 | +### Frequently Asked Questions |
| 206 | +You can also add answers to common questions here. This will help club leaders when undertaking your new project with children. This section can be removed if it is not necessary. |
| 207 | + |
| 208 | +## 4. Add your project to the manifest. |
| 209 | + |
| 210 | ++ You should be able to see a file with a `.manifest` extension in the same folder (or the folder above) the folder containing your new project. |
| 211 | + |
| 212 | ++ Add your project to the 'additional projects' manifest. You can do this by copying and pasting an existing project entry, modifying the parameters. Here's an example: |
| 213 | + |
| 214 | +``` |
| 215 | + { |
| 216 | + "number": 3, |
| 217 | + "beta": true, |
| 218 | + "filename": "Project Template/Project Template.md", |
| 219 | + "note": "Project Template/Project Template - notes.md" |
| 220 | + } |
| 221 | +``` |
| 222 | + |
| 223 | +Make aure that there is a comma between each project entry (after the `}`) but not after the final project! |
| 224 | + |
| 225 | +## 5. You're done! |
| 226 | + |
| 227 | +Go back to the main notes on [contributing](contributing.md) to see how to upload your new project. |
0 commit comments