Simon writes CodePen blog on for-loops

Simon has authored a comprehensive post about For-Loops (in JavaScript ES5 and ES6) in the CodePen blog, nice for anyone learning about loops syntax: https://codepen.io/simontiger/post/for-loops Simon’s update: I now also … Continue reading Simon writes CodePen blog on for-loops

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

Live Stream #4 on December 14. Living Code > Vectors.

Simon debuted with his own coding course last week! The course is called “Living Code” and Simon has already planned all its sessions for the year ahead. He is going … Continue reading Live Stream #4 on December 14. Living Code > Vectors.

The Neural Nets are here!

Simon has started building neural networks in Python! For the moment, he has succeeded in making two working neural nets (a Perceptron and a Feed Forward neural net). He used … Continue reading The Neural Nets are here!

Simon explains K Means Clustering

Simon has prepared this implementation of “K-Means Clustering” in Processing as a gift for Daniel Shiffman, who is plainning to talk about this Machine Learning model in one of his … Continue reading Simon explains K Means Clustering

The Genetic Algorithm Game Bug Solved!

Simon’s version of the Citius Invaders game in Processing is finally working! The big bug that seemed so unsolvable (enemies endlessly crossing over) has been defeated! Siraj Raval presented this game in … Continue reading The Genetic Algorithm Game Bug Solved!