Determinism

I personally am still having a hard time finding the relevance of universal determinism to discussions about the brain…

4 Likes

Dr Robert Sapolsky on behaviour

where you could also gather some insights and/or his view on the subject

3 Likes

Speaking of Dr. Sapolsky, I think this lecture is also really relevant to the subject of determinism. In particular, around 1:07:38 where he explains the scale-free aspect of chaotic systems.

2 Likes

I’m at the eighth lecture… I’ll get to it in a while ^^

2 Likes

I will try to enhance this game with AI. So, without further adieu let’s jump right into this project. All the code used in this project is available on Codepen

The Markup

This being a javascript centric project I won’t be focusing on the markup a lot, but for those who want similar UI to my one, can follow.

The HTML started with the usual head declaration with linking the stylesheet and declaring the title:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Tic-Tac-Toe</title>
    <link rel="stylesheet" href="style.css" />
  </head>
</html>