DaddyCoder

A blog about teaching kids programming

kids with special educational needs in Code Club

May 5, 2017 by daddycoder 1 Comment

I’m going to start out by saying that this post is more question than answer. I’m just dumping my brain on this topic in the hope that others can help me produce some answers.

I recently became a parent governor for my kids’ primary school. I think it’s an exciting opportunity to get involved with the school and perhaps help make it better for my kids and for all the others. I already run Code Clubs there and at another local school and have been doing that for 3 years. So I’m accumulating some experience of the different abilities and interests of the kids that come to my clubs. But as a governor I’ve been learning about SEND or Special Educational Needs and Disabilities. The children classed as SEND have a variety of different special needs. Any physical disabilities I feel I could cope with in Code Club as long as they can read and click and drag with the mouse.

But I find myself thinking about children with learning disabilities or autism. How do I make Code Club valuable for those children? I sincerely believe that education should be for everyone and that we shouldn’t be leaving SEND kids behind. Further, I think providing good education to the SEND kids will likely raise the level for the majority of kids in the school. So I don’t think Code Club should be just the preserve of the gifted and talented kids. Certainly we see a lot of those in Code Clubs but the ability to problem solve and construct algorithms or tell stories and entertain with code should be for everyone.

Anyone that has been part of the professional programmer community will know (whether they realise it or not) a number of very smart people that have some kind of autism. Often those different brain processes make for particularly talented coders. So I think it’s really important that as Code Club leaders we’re ready to embrace those kids.

So how can we help them? What can we do that gives them some value? Well of course is depends a great deal on the nature of the child’s special needs. Sometimes a child with ADHD or some form of Autism will take off in Code Club and love it with a passion. They might show a real aptitude – if we can win their trust and learn how to interact with them. And that’s one area where I feel very poorly equipped.

But in other cases, with learning disabilities for example, the child might just need longer to absorb what they’re being shown. They might need a lot of guidance. And this worries me because time is the one thing we don’t have a lot of in Code Club. It’s 1 hour per week and I’ve usually got a room with 10-15 kids in it, all of whom want and deserve my attention. And once again I don’t feel I know how best to interact with a child like that. I have no teacher training and no training in how to deal with kids that have special needs. I know I tend to go very fast with my explanations of things. I find it hard and somedtimes frustrating to slow down. I always want to cram the most value I can into my time.

So as I said, this is more of a statement of a problem or a worry than any kind of useful solution. If you’re thinking about this too or if you’re dealing with it then I’d love to hear from you in the comments below while, of course, avoiding discussing individuals.

Share this:

  • Email
  • Facebook
  • Google
  • Twitter
  • Pinterest

Filed Under: Uncategorized

Penjee – the perfect bridge from Scratch to Python

March 14, 2017 by daddycoder Leave a Comment

I’ve been looking for a way to bridge the gap between Scratch and Python and I think I’ve found one! Check out www.penjee.com. It’s a python teaching site that presents the kids with a series of puzzles. They have to write Python code to solve the puzzles but it keeps the visually simple and enjoyable element of moving a character around a maze. The kids don’t need to learn about importing modules or lose the pretty visuals of Scratch. Instead they can learn how to type code. That capitalization matters. That syntax matters. And how to debug problems using a real debugger.

The puzzles move at a wonderfully steady slow pace that gives the kids a lot of time to practice the skills they’ve learned before moving on to the next topic. And the topics are clearly explained through videos and lots of help.

And as the icing on the cake if you’re a teacher you can set up a teacher’s account and then add all your kids to it so that you can see how they’re all progressing.

This site is just WONDERFUL and I encourage anyone teaching kids coding to take a look and give it a try. Also hit them up on Facebook and share them out. They deserve it.

Share this:

  • Email
  • Facebook
  • Google
  • Twitter
  • Pinterest

Filed Under: Uncategorized

Still doing this

March 2, 2017 by daddycoder Leave a Comment

It’s been a while. Bit of a year. I won’t bore you with it. But I’m still running Code Clubs and still loving doing it! I’m still struggling with teaching the kids Python because I still feel the gap between Scratch and Python is too far. There are some kids that just want to keep doing Scratch and I feel strongly that they should be allowed to. I don’t think the objective of Code Club is to train kids to be programmers. I think it’s to have fun with computing, to help kids understand broadly how computers work and to help them understand that computers can be programmed to do what they, personally, want them to do. I also want to give kids inquiring minds that can solve problems and create processes and algorithms. And most of all I want to share with kids my joy in computing and technology.

So Python is on my mind because we’re at the halfway point in this term and I want to give the more programmery kids the opportunity to try it with me around to help them. So I’m looking again at beginner Python projects. The Turtle ones are probably the most visually interesting. If you know of a game creation library that could help us make Scratch style games in Python then please let me know!

And for the Scratch kids I’m creating my own projects as well as using the Code Club projects. My latest is this one – a classic Space Invaders. I’ve always wanted to write this. I’ve often though about how I’d solve the problem of making the invaders move as a block, travelling the full width of the screen despite the size of the block changing as you shoot the invaders. In the end you just need to set a flag when any one invader gets too close to the edge and then when the flag is set change the direction of movement.

The next big question is how I add bases. It’s going to have to be a collection of sprites I think. Not decided how many yet. And I’ll need some re-usable code to place all the sprite blocks together in the right arrangement to look like a base. And hope it doesn’t slow things down too much. That is the biggest challenge with Scratch.

I don’t expect my Code Club kids to write their own version of Invaders. It’s meant to be inspiring and perhaps a remix starting point for anyone that wants to modify mine. I make these things as much for my own enjoyment as theirs.

Share this:

  • Email
  • Facebook
  • Google
  • Twitter
  • Pinterest

Filed Under: Uncategorized

Python – Twentyone

February 8, 2016 by daddycoder Leave a Comment

robo_joystick
Today I’m making more python with the kids. This time we’re talking about the if statement. Based on Code Club project 5 – Gameshow, which I’ll go through with the kids on the big screen, this is a more sophisticated game that those kids who feel more advanced can take a look through and copy from if they wish. It’s the basic Blackjack 21 game. In my version you play against a slightly sassy computer opponent. It might be fun getting the kids to change some of the messages to make it even more acidic.

Share this:

  • Email
  • Facebook
  • Google
  • Twitter
  • Pinterest

Filed Under: Uncategorized

6 coding lessons that are the opposite of what school teaches you

February 4, 2016 by daddycoder Leave a Comment

A friend of mine just directed me to this rather excellent blog post by Katerina Pascoulis on Gadgette.com. It describes some of the lessons the author learned from becoming a coder that were unexpected and which flew in the face of what school had taught her. I think these lessons are just the sort of thing that we should be telling the kids in Code Club. I already do this with point number 5 – “Creating everything from scratch isn’t a good use of your time”. Although I do it by saying to the kids that there is one rule in Code Club – copying is allowed. In fact it’s encouraged. And then I go on to explain about code re-use and learning from each other. I’ll consider bringing in some of these other points to my Code Club introductions as well. But for now – go and read this. It’s a great post:

6 lessons to forget before you start learning to code

For more from the same author you can follow Katerina on Twitter or read Katerina’s Medium.

Share this:

  • Email
  • Facebook
  • Google
  • Twitter
  • Pinterest

Filed Under: Uncategorized

Stop The Clock

July 22, 2015 by daddycoder 1 Comment

robo_scratchShow off time really. I’ve had this game in my head for literally years. Since I was a kid in fact when I had a physical real world version of this, only without the coins, which are my addition as a reason to actually go somewhere.

The idea is that the clock moves along the black lines which represent grooves in the tiles. Click tiles to slide them around. Arrange the tiles to make the clock reach the coins. You can keep sliding the tiles while the clock is moving. You can also slide tiles before you set the clock moving so you get a nice start. But once the clock is moving it keeps going.

This game uses a real line following algorithm that uses 2 sensors, one ahead and one slightly to the left. I wanted for a while to try writing a line following algorithm in Scratch. It’s fussy and difficult and mine in this game is far from perfect. Don’t try and do this with the kids at Code Club.

Under the line following is a sliding puzzle. This is much easier and uses Scratch version 2’s cloning code. So each tile is an instance of the main tile, which is hidden, and each takes care of its own movement. So when you click on one it looks around to see which way it can move. If it can move into an adjacent empty space then it does. Simple. Definitely easy enough to do with the kids. Feel free to steal the code. I’m pretty sure this could be used in a variety of other games.

Share this:

  • Email
  • Facebook
  • Google
  • Twitter
  • Pinterest

Filed Under: Uncategorized

Follow Me

  • Google+
  • Twitter

Search this site

Creative Commons Attribution-NonCommercial 4.0 International License DaddyCoder 2019

loading Cancel
Post was not sent - check your email addresses!
Email check failed, please try again
Sorry, your blog cannot share posts by email.