RSS IMAP

RSS IMAP

I've been using feedly since Google decided RSS wasn't a thing any more, and have been pretty happy with it. It wasn't as good as Google Reader, but good enough. The ads are gradually becoming more invasive though, and there's less of the minimalist feel it had when I first started using it, s...

Continue reading...
BBC micro:bit with Python for Kids

BBC micro:bit with Python for Kids

Janick writes:

My son got "Python for Kids" (the dutch translation) from Sinterklaas last december (Sinterklaas is the local Santa in Belgium and the Netherlands). He really enjoyed it! The weeks following he read and coded almost every day until he finished the book. Some days after, I ment...

Continue reading...

Booting Raspberry Pi from External USB

I wanted to boot my Raspberry Pi 4 from an external SSD connected via a USB-to-SATA cable. According to Jeff Geerling's video, it's pretty straightforward using the latest version of the firmware - but try as I might I couldn't get it to start. Tried re-imaging the SSD; also used the SD card copi...

Continue reading...

Breaking out of loops

Sherry W writes (excerpted):

Excellent book so far for my grandson.

On page 78 should it read?:

while True:
    lots of code here
    lots of code here
    lots of code here
    if some value == False
        break

Book is written very well for that age group. It’s great to h...

Continue reading...
Problem with bouncing ball

Problem with bouncing ball

Lennier M writes:

I am on page 202 of your book, but when I followed your instructions, the ball stopped moving, instead of moving in multiple directions. Here is my code:

class Ball:
    def __init__(self, canvas, color):
        self.canvas = canvas
        self.id = canvas.create_oval(...

Continue reading...