JavaScript Clocks: Animating SVG

In our last article, we looked at the very basics of SVG: just enough to draw a hand on a blank clock face. In this article, we’ll be looking at how to animate those elements using JavaScript. Let’s take a look at where we left off last time. <html> <head> <title> Clock </title> </head> <body> <svg> <rect x=”50%” y=”5%” width=”1%” height=”45%” transform=”rotate(45, 50, 50)” /> … Continue reading JavaScript Clocks: Animating SVG

The Raspbian Command Line, Part 1

The Raspberry Pi is a very useful tool for beginners to learn the basics of computer science, but one of the first things new users need to wrap their heads around is how to use the terminal. Since so many useful tutorials out there have readers using the Linux terminal, it’s important to have an understanding of how to make use of it. Continue reading The Raspbian Command Line, Part 1