Live Stream #7. Chapter 3 of Living Code: Random Numbers.

Simon’s 7th live stream on Thursday went great. He has about 230 subscribers at the moment, so there were people watching and posting encouraging comments in the chat. In the … Continue reading Live Stream #7. Chapter 3 of Living Code: Random Numbers.

Live Stream #6. (Mostly) Chapter 2 of Living Code: Forces.

Simon’s latest live stream on Thursday, January 11 was a blast! For the first time in his programming career he actually had quite a few viewers – largely thanks to … Continue reading Live Stream #6. (Mostly) Chapter 2 of Living Code: Forces.

Simon’s Fibonacci function and Fibonacci counter in p5.js

Simon came up with this Fibonacci function while taking a walk downtown: f(0) = 0 f(1) = 1 f(n) = f(n-1)+f(n-2) When we got home, he used the function to … Continue reading Simon’s Fibonacci function and Fibonacci counter in p5.js

Sphere Morphing in Processing

Simon is trying to write a program for Sphere Morphing in Processing, first making a test code in p5.js (available here: https://alpha.editor.p5js.org/simontiger/sketches/S1zcwevkz) In the video below, Simon is explaining the … Continue reading Sphere Morphing in Processing

Simon contributes to the p5.Speech library

Simon has made a pull request to the p5.Speech GitHub repo (a milestone!) and hopes his request gets merged. In this video he explains what he wants to improve with … Continue reading Simon contributes to the p5.Speech library

10 PRINT in p5.js and Python. Emulating a text console.

A simple code creating a beautiful pattern using text: Based on a coding challenge by Daniel Shiffman, where he created a version of the classic one-line Commodore 64 BASIC program in … Continue reading 10 PRINT in p5.js and Python. Emulating a text console.

Evolutionary Steering Behaviors Game

Note: See the update at the bottom of this post! We’ve had quite a dramatic situation here for the past couple of days, after Simon turned Daniel Shiffman’s Evolutionary Steering … Continue reading Evolutionary Steering Behaviors Game

Diffusion Limited Aggregation Tests in p5

Simon was busy with Diffusion-Limited Aggregation, the code he learned from Daniel Shiffman’s Coding Challenge about the generative algorithm “Diffusion-Limited Aggregation.” The DLA visual pattern is generated from random walkers … Continue reading Diffusion Limited Aggregation Tests in p5