Skip to main content

Posts

Mapping the World's Earthquakes with Python — A Beginner's Data Project

The Earth is restless. In any given month, earthquakes rattle the planet — most too small to feel, but all carefully recorded by sensors around the globe. What if you could pull all of that data into Python and put it on a map in minutes? That is exactly what this project does. There is something compelling about real, live data. It is one thing to practise Python with made-up lists and fictional datasets; it is another to write a handful of lines of code and get back information about actual geological events happening right now. This project is a great entry point into the world of APIs — the digital doorways that let your programs reach out to the internet and bring back structured information. We are going to pull a month's worth of earthquake data from the US Geological Survey (USGS) , load it into a Python DataFrame, and then plot it on an interactive map. No specialist hardware required — just Python and curiosity. 💡 This project was inspired by the "Fetching Cu...

Fast-Track Beginner’s Guide to Building VR and AR in Your Browser 2026

Have you ever looked at a Virtual Reality (VR) headset and thought, "I wish I could build something for that," only to be scared off by the mention of complex game engines, expensive hardware, or high-level coding? The landscape of digital creation has changed. You no longer need a massive workstation or a background in computer science to build immersive worlds. If you can write a few lines of basic HTML, you have everything you need to become a VR developer. By using A-Frame , an open-source web framework, and the power of modern browsers, your "playtime" can turn into a gateway to the Metaverse. Why WebVR? WebVR (and its modern successor, WebXR) is built on a simple philosophy: accessibility . Unlike traditional VR apps that require massive downloads, WebVR experiences are just links. They work on your laptop, your smartphone, and high-end headsets like the Meta Quest or Apple Vision Pro. In this guide, we have collated a series of experiments—originally shared b...

Build a 'Robot' from Junk (and Learn Something Real)

How a drinks can, a small motor, and a cheap programmable controller can open a world of making, tinkering, and genuine engineering thinking — for kids and adults alike. Eggbot  There is something quietly radical about the Junkbot idea. It started not with a lesson plan or a product brief, but with a question: what can you actually make with the stuff lying around? Over nearly a decade of exploration, educator and maker Scott Turner refined a simple concept — a vibrating robot built from a drinks can, a small motor, and a handful of pens — into something that touches on environmental science, engineering, and computing all at once. This post is for the makers who like to build first and ask questions later, for parents who want to spark something in a curious kid on a weekend, and for educators looking to point people toward genuinely interesting projects. We are going to look at how you build one, and then think about where the idea can go next. Why junk? The word “junk” i...

From Code to Cables: Building a Physical Neural Network with micro:bits

Artificial Intelligence often feels like "magic" happening inside a powerful computer. But at its core, a neural network is just a series of mathematical decisions. In my previous posts, we looked at how to simulate these decisions in Python. Today, we are taking that "brain" out of the computer and building it in the real world using three BBC micro:bits . In this project, each micro:bit acts as a single neuron . By wiring them together, we create a physical network capable of logic and decision-making. The Math: How a Neuron "Thinks" Every neuron in our network follows a simple linear formula to decide whether or not to "fire" (send a signal): Figure 1 - the maths If the result Net  >=0  the neuron fires (Output = 1). If it’s less than 0, it stays at Output = 0. Step 1: The Logic Gate "Cheat Sheet" Before we flash the code, we need to decide what we want our neurons to do. By changing the weights and bias , we can turn a micro:bit...