You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

229 lines
15KB

  1. <!DOCTYPE html>
  2. <html>
  3. <meta charset="utf-8">
  4. <head>
  5. <link rel="stylesheet" href="../../style.css">
  6. </head>
  7. <body>
  8. <script data-goatcounter="https://services.opengamestudio.org:443/count" async src="//services.opengamestudio.org:443/count.js"></script>
  9. <div id="header">
  10. <div>
  11. <strong id="title">Open Game Studio</strong>
  12. <div id="lang">
  13. <a href="../../en/news/teaching-kids-to-program.html">EN</a>
  14. <a href="../../ru/news/teaching-kids-to-program.html">RU</a>
  15. </div>
  16. </div>
  17. <div class="header2">
  18. <div class="menu">
  19. <a href="../../en/news/index.html">News</a>
  20. <a href="../../en/game/index.html">Games</a>
  21. <a href="../../en/tool/index.html">Tools</a>
  22. <a href="../../en/page/about.html">About</a>
  23. </div>
  24. <a class="discord" href="https://discord.gg/3A6THQabNf">
  25. <img src="../../images/discord.png"></img>
  26. </a>
  27. <div class="clear"></div>
  28. </div>
  29. </div>
  30. <h3 class="left_item_title">In the news...</h3>
  31. <center>
  32. <div class="news_item">
  33. <h2 class="news_item_title">
  34. <a href="teaching-kids-to-program.html">Teaching kids to program</a>
  35. </h2>
  36. <p class="news_item_date">
  37. 2019-02-04 00:00
  38. </p>
  39. <div class="news_item_contents">
  40. <p><img src="../../images/2019-02-04_teaching-kids-to-program-team.png" alt="Students and teachers" /></p>
  41. <p>In this article, Michael shares his experience of teaching kids to program.</p>
  42. <p>Here's what he covers:</p>
  43. <ul>
  44. <li>organization of the learning process</li>
  45. <li>learning plan</li>
  46. <li>memory game</li>
  47. <li>development tools</li>
  48. <li>lessons</li>
  49. <li>results and plans</li>
  50. </ul>
  51. <p><strong>Organization of the learning process</strong></p>
  52. <p>The learning process is conducted as part of corporate social responsibility: a company provides a room with equipment and connects employees that want to try themselves in the role of teachers with employees that want their kids educated. All this is done voluntarily.</p>
  53. <p>Potential teachers are divided into groups so that each group contains three teachers: experienced one and two novice ones. Such a group of three teachers leads a group of students. Students are divided into groups by age and skills.</p>
  54. <p>I participated in the program as a teacher for the second time in 2018. The kids were around ten years old. Our group was active from October to December of 2018 each Saturday, 10:00-12:00. Using my position as a teacher, I've also brought my wife in as a student.</p>
  55. <p><strong>Learning plan</strong></p>
  56. <p>The first time I participated in the program, our group taught kids rather mindlessly: we were coming up with simple tasks to explain different operators. By the end of the course we had nothing concrete to evaluate, analyze, and share.</p>
  57. <p>This second time I decided we are going to create a memory game with kids. I decided to consider the course successful if by the end of the course each kid would be able to create a simple memory game from scratch in an hour.</p>
  58. <p>To achieve that, we were recreating the same game from scratch each lesson. I'd like to stress that we did not use personal accounts to save progress. Our task was to save the skill of game creation in the head, not a PC.</p>
  59. <p><strong>Memory game</strong></p>
  60. <p>Let's see what the memory game is.</p>
  61. <p><strong>1)</strong> In the simplest case we have 16 cards, only 8 of them are unique, the rest 8 are duplicates of the unique ones.</p>
  62. <p><img src="../../images/2019-02-04_teaching-kids-to-program-all-cards-face-up.png" alt="Cards face up" /></p>
  63. <p>As you can see, we only have two cards with a cat, only two cards with a dog, etc..</p>
  64. <p><strong>2)</strong> At the start we shuffle the cards and place them with their faces down.</p>
  65. <p><img src="../../images/2019-02-04_teaching-kids-to-program-all-cards-face-down.png" alt="Cards face down" /></p>
  66. <p><strong>3)</strong> The first game player turns a pair of cards.</p>
  67. <p><img src="../../images/2019-02-04_teaching-kids-to-program-first-pair.png" alt="A pair of cards" /></p>
  68. <p><strong>4)</strong> If the cards differ they are once again turned face down.</p>
  69. <p><img src="../../images/2019-02-04_teaching-kids-to-program-all-cards-face-down.png" alt="Cards face down" /></p>
  70. <p><strong>5)</strong> The next player turns another pair of cards.</p>
  71. <p><img src="../../images/2019-02-04_teaching-kids-to-program-second-pair.png" alt="Second pair of cards" /></p>
  72. <p><strong>6)</strong> If the cards are the same, they are removed from the field.</p>
  73. <p><img src="../../images/2019-02-04_teaching-kids-to-program-remove-pair.png" alt="A pair of matching cards has been removed" /></p>
  74. <p>The goal of the game is to remove all cards from the field. There's no competition here so the game can be played alone.</p>
  75. <p>From one hand, the memory game is rather simple. From the other hand, the game implementation requires essential functionality each more or less complex game has:</p>
  76. <ul>
  77. <li>creation of items</li>
  78. <li>arrangement of items</li>
  79. <li>selection of items</li>
  80. <li>comparison of items</li>
  81. <li>removal of matching items</li>
  82. </ul>
  83. <p><strong>Development tools</strong></p>
  84. <p>We used Scratch as our development tool. <a href="https://scratch.mit.edu/">Scratch</a> is a great tool to teach kids to program because each action, each operation is represented graphically.</p>
  85. <p>For example, you can rotate a cat 360 degrees in 1 second using the following script:</p>
  86. <p><img src="../../images/2019-02-04_teaching-kids-to-program-cat-script.png" alt="Script" /></p>
  87. <p>Here's how it looks like in action:</p>
  88. <p><img src="../../images/2019-02-04_teaching-kids-to-program-cat-animation.gif" alt="Animation" /></p>
  89. <p>I'd like to stress that Scratch is a rather successful solution to represent code graphically. For example, a paid solution by SAP uses similar concept of cubes to program logic:</p>
  90. <p><img src="../../images/2019-02-04_teaching-kids-to-program-sap-ui.png" alt="SAP UI" /></p>
  91. <p>Users can only input values into predefined fields. If users want more functionality they have to resort to scripts.</p>
  92. <p>Personally, I have never witnessed any slowdown in Scratch, and there were many in SAP's solution.</p>
  93. <p><strong>The first lesson</strong></p>
  94. <p>The first lesson was introductory, we didn't use PCs.</p>
  95. <p>The plan was to:</p>
  96. <ol>
  97. <li>Meet</li>
  98. <li>Play the memory game with cards</li>
  99. <li>Learn the concept of algorithm</li>
  100. <li>Detail the game's algorithm</li>
  101. <li>Analyze the lesson</li>
  102. </ol>
  103. <p><strong>1)</strong> Meeting</p>
  104. <p>Both teachers and students stand in a circle. This equalizes everyone and makes everyone a team member.</p>
  105. <p>The first team member tells his name and why he decided to take the course. The second team member and the rest first repeat the name and the story of each previous team member before telling their own names and stories.</p>
  106. <p>Here's how it looks like:</p>
  107. <ol>
  108. <li>John: "My name is John, I am going to study Scratch because my father forces me to"</li>
  109. <li>Alex: "This is John, he's doing Scratch because his father wants him to do it. My name is Alex, and this is my fourth year with Scratch"</li>
  110. <li>Ann: "That's John, his parents force him to do Scratch. This is Alex, he's a Scratch veteran. And I'm Ann, a novice teacher, so I'm going to learn together with you all"</li>
  111. </ol>
  112. <p>Such a format of meeting has the following objectives:</p>
  113. <ul>
  114. <li>Getting to know each other<ul>
  115. <li>Each team member should know other team members by name</li></ul></li>
  116. <li>Common space<ul>
  117. <li>Everyone is in the circle, not at a working desk, this prevents distraction of kids by PC games</li></ul></li>
  118. <li>Equality<ul>
  119. <li>Both teachers and students are in the same circle, this equalizes everyone as a team member without hierarchy</li></ul></li>
  120. <li>Attention<ul>
  121. <li>Each team member should listen carefully to be able to correctly repeat what others said</li></ul></li>
  122. <li>Feedback<ul>
  123. <li>Each team member should be as clear as possible when expressing thoughts, otherwise nobody would be able to repeat them</li></ul></li>
  124. <li>Fun<ul>
  125. <li>Memorization problems produce lots of laughter</li></ul></li>
  126. </ul>
  127. <p><strong>2)</strong> Memory game with cards</p>
  128. <ol>
  129. <li>Take 8 pairs of the same cards from two decks of cards</li>
  130. <li>Place the cards in 4 x 4 grid, faces down</li>
  131. <li>Students stand up around single table</li>
  132. <li>Each student, one by one, turns a pair of cards<ul>
  133. <li>If cards match, they are taken off the field</li>
  134. <li>If cards differ, they are once again turned face down</li></ul></li>
  135. </ol>
  136. <p>Students are eager to play tabletop games. During the game party teachers say out loud each step in the game's algorithm.</p>
  137. <p>After a couple of parties it's time to find out what algorithm is.</p>
  138. <p><strong>3)</strong> The concept of algorithm</p>
  139. <ol>
  140. <li>Ask students first, hear them out to find out their level</li>
  141. <li>Correct what students say if they were close to an expected answer</li>
  142. <li>Ask students to write an algorithm to move a man from "stands outside a room" state into "sits and works at a PC" one</li>
  143. </ol>
  144. <p>Students like to go to blackboard and write, so we ask each student to come and write a single step of the algorithm at a time. The most active student should execute the algorithm by following it strictly.</p>
  145. <p><strong>4)</strong> The algorithm of the game</p>
  146. <p>Ask students to compose the game's algorithm. Again, let students come to the blackboard and add one step of the algorithm at a time. Once the algorithm is ready, play the game with cards once again. Now, each student should say the algorithm's step he executes.</p>
  147. <p>Here's how it looks like:</p>
  148. <ol>
  149. <li>John: "Place 16 cards faces down"</li>
  150. <li>Alex: "Turn a pair of cards"</li>
  151. <li>Paul: "If the cards differ, turn them faces down again"</li>
  152. <li>Dan: "Turn another pair of cards"</li>
  153. <li>Mike: "If the cards match, take them off the field"</li>
  154. </ol>
  155. <p><strong>5)</strong> Analyze the lesson</p>
  156. <p>That's it for the first lesson. Teachers finally have time to discuss the lesson: discuss the kids, approaches to shy and active kids, plan next lessons.</p>
  157. <p>We had the following decisions:</p>
  158. <ol>
  159. <li>Arrange students so that active ones sit next to shy ones as "active-shy-active-shy-etc" so that we don't end up with two groups of shy and active students at different sides of a room, which would hamper productivity.</li>
  160. <li>Only accept accurate answers from students because active students like to wriggle, which hampers discipline.</li>
  161. </ol>
  162. <p><strong>The second and the third lessons</strong></p>
  163. <p>We were beginning each lesson with the same meeting: we would stand up in a circle, tell our names and what we did. Those who did nothing should have said why. Just as before, everyone should first repeat what previous team members said.</p>
  164. <p>We spent the second lesson to create requirements for an item of the playfield and then create the item in Scratch. This was moderately successful.</p>
  165. <p>We spent the third lesson trying to create 16 items and arrange them in 4x4 grid. We failed miserably because we could not explain coordinate system to students. It became apparent that lesson plans were only plans, reality had its own demands.</p>
  166. <p>We saw two ways to approach the problem:</p>
  167. <ol>
  168. <li>Keep on studying the coordinate system risking not to get the game done by the end of the course</li>
  169. <li>Change the game requirements so that coordinate system is not necessary</li>
  170. </ol>
  171. <p>We went the second way because, after all, we're not a school, our goal was to teach kids to create the game, i.e., use skills in practice, not theory. That's why we replaced 4x4 grid with a circle of 16 items.</p>
  172. <p>This solution sparkled a few thoughts in my head:</p>
  173. <ol>
  174. <li>One can often find a simpler path to solve an issue</li>
  175. <li>This path is simpler to understand, albeit less flexible</li>
  176. <li>One can go the harder path to increase flexibility much later when it becomes absolutely necessary</li>
  177. <li>Simplification moves one closer to the goal, complexification moves one in the opposite direction</li>
  178. </ol>
  179. <p><strong>The fourth and the rest of the lessons</strong></p>
  180. <p>The fourth lesson marked the end of coming up with requirements in class because doing so started to take too much time. We chose practice over theory once again to meet the deadline. This time all requirements were conducted before the lesson. Still, nobody read them.</p>
  181. <p>We spent the fourth and the fifth lessons to create 16 items in circle, select a pair of items and match them.</p>
  182. <p>We started recreating complete game from scratch on the sixth lesson. Each time students were recreating complete game faster and faster. On the eighth lesson we introduced a leaderboard to track how fast each student recreates a specific part of the game.</p>
  183. <p><strong>The last lesson</strong></p>
  184. <p>When the last lesson approached everyone was able to create the memory game from scratch more or less independently in two hours.</p>
  185. <p>Here's the leaderboard of the last lesson (names are hidden):</p>
  186. <p><img src="../../images/2019-02-04_teaching-kids-to-program-leaderboard.png" alt="Leaderboard" /></p>
  187. <p>The leaderboard is in Russian, here are the captions translated:</p>
  188. <ul>
  189. <li>Name</li>
  190. <li>Circle of items</li>
  191. <li>Selection of pairs</li>
  192. <li>Hide all</li>
  193. <li>Hide a pair</li>
  194. </ul>
  195. <p>Here you can witness the creation of the memory game from scratch by the fastest student: in just half an hour.</p>
  196. <iframe width="560" height="315" src="https://www.youtube.com/embed/WlA193S3SPY" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  197. <p><br/></p>
  198. <p><strong>Results and plans</strong></p>
  199. <p>The results surpassed my expectations:</p>
  200. <ul>
  201. <li>three students made it in an hour or faster</li>
  202. <li>two students made it in an hour and a half or faster</li>
  203. </ul>
  204. <p>This year I plan on doing another round of the memory game recreation. However, I'm going to replace Scratch with Opensource Game Studio tools: the students will use Lua, Git, and GitHub Pages.</p>
  205. <p>That's it for sharing Michael's experience of teaching kids to program.</p>
  206. </div>
  207. </div>
  208. <div id="disqus_thread"></div>
  209. <script>
  210. var disqus_config = function () {
  211. this.page.url = "https://opengamestudio.org/en/news/teaching-kids-to-program.html";
  212. this.page.identifier = "teaching-kids-to-program.html";
  213. };
  214. (function() { // DON'T EDIT BELOW THIS LINE
  215. var d = document, s = d.createElement('script');
  216. s.src = 'https://opengamestudio.disqus.com/embed.js';
  217. s.setAttribute('data-timestamp', +new Date());
  218. (d.head || d.body).appendChild(s);
  219. })();
  220. </script>
  221. <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
  222. <div id="footer">
  223. The site has been generated by <a href="http://opengamestudio.org/pskov">PSKOV</a>
  224. from <a href="http://github.com/ogstudio/site-opengamestudio">this source code</a>.
  225. </div>
  226. </center>
  227. </body>
  228. </html>