Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 4, 2020 10:16 pm GMT

It's Never Too Late To Learn: 3 things my 11yo taught me about coding

Recently I wrote a couple of spontaneous threads on Twitter that became the most-viewed of my posts in over a decade. They focused on learning. The first inspired me to convert the tweets into a series of personal essays to support deeper conversations on those topics.

Today I'm converting the second thread into a post for the series. You can click the tweet below to read the thread on Twitter or just scroll down to read it in paragraph form. (The bonus of writing this on dev.to is that I can actually fix those pesky typos in my tweets!)

The original thread has 13 tweets. I captured the first eleven below, and the final two in the Takeaway section at the end.

The Thread

It's never too late to learn something and never too early to share knowledge with others. My 11yo is getting more into Python so I decided to do (separately) the same intro Udacity course and be a study buddy.

And something interesting happened. (A thread)

It started weeks ago. We realized schools were not going to have any meaningful routines & wanted to give him something with a target and achievement, that would promote self-study and learning. I pointed him to the Udacity "Intro to Python Programming".

He started doing the lessons & zoomed through them.
It was clear he was watching the videos and completing the exercises fairly fast. It wasn't as clear if he understood the concepts in a way that allowed him to apply them elsewhere.

So I announced I would do the course!

At which point he suddenly took an interest in MY progress. I made it a point to tell him I had never done the course before. (True - I've used Python as-needed and learned it as I learned everything else, by examples and application)

He decided he needed to be my coach.

And so began an interesting journey. I watched videos with him and sketchnoted things of interest. And we would have discussions about what we were hearing and how it would apply. Till then he had used Python with Mindstorms - and with clear code examples (copy/edit). Now he saw Python as an open-ended tool to make things - and he started reading "Invent your own computer games with Python"

It opened his mind further to creative things he could do with code. Which brings me to yesterday (Jul 18). He came over all excited to show me a simple text-based adventure game he had created via Trinket App

A professional coder might look at it and think it needed work
Just conditionals, print statements and string literals. Not at all [DRY]!(https://en.wikipedia.org/wiki/Don%27t_repeat_yourself).

They would be wrong.

To understand the power of learning and achieving you need to understand the user journey and goal. You need to see a 11yo giggling and running the app till the dragon finally relinquished the treasure.

It wasn't code.
It was creation + storytelling

He was only running code examples and modifying them slightly. But he had learned two things already.

  • Document. Document. Document.
  • Experiment. Experiment. Experiment.

And now he was ready to have the conversation on problem solving with code given a written problem.

The image above was me challenging him to take the same example text-adventure and modify it to create a "Snakes-and-Ladders" game.

Huh? "Where do I start?"

And that shift in mindset was what successful learning is about - not "can I do this?" but "HOW can I do this?".

We had more conversations - the biggest lesson I could impart to him was that there were no perfect solutions. Just iterative experiments to get desirable results. We walked through data structures and functions and understanding how to write code for agility and reuse.

He grasped three things immediately

  • Use functions to abstract complexity so code was readable
  • Use print + interactive runs to test & validate assumptions
  • Make the basic idea work before layering on complexity

His first board had 1 snake, 1 ladder - and it worked.

The Takeaway: 3 Things

This morning he has been busy explaining to his grandparents how they can create a text-based board game with Python. And explaining how we can share code via browser if they want to learn. And he told me he will extend this to multiple snakes/ladders -

And that to me is the three steps to successful learning

  1. BUILD something (document, experiment, iterate)
  2. EXTEND it to do something more (be creative, efficient)
  3. TEACH someone else what you do (clarify your thinking, inspire someone else)

The Journey Continues!

Update 1: July 21, 2020

We have a working Snakes-and-Ladders game and it has the ability to be taken to the next level and randomized for different board sizes. I gave him the win on this one.

Update 2: Aug 2, 2020

I think I may have found us a new adventure to go towards.

The 11yo was on board and we had a great conversation but this one is a bit more complex than the first one. I hope he perseveres. And I hope I get a chance to update this thread with learnings later

Your Turn

Do you have a story on how it's never late to learn? Or about someone who surprised you with their ability to overcome initial hurdles and discover the joy in problem solving?

Let me know - and if you have ideas or insights into other things I can get the 11yo to explore in his Python and game development journey, just leave a comment below.


Original Link: https://dev.to/nitya/it-s-never-too-late-to-learn-3-things-my-11yo-taught-me-about-coding-48do

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To