-
HTML5 Game Development Part 1 – helloWorld

A long time ago, back in the early 2000s, the internet looked a lot different than it is today. Youtube and social media was only getting started, and the popular way to share and interactive content online was through this player you would download on the browser called Adobe Flash. Back then, I worked several…
-
Expert System Part 1
An expert system emulates the knowledge and expertise of a human being by breaking it up to two parts: A knowledge base, and an inference engine. First developed in the 1960’s and later became widely used in the 1980’s, it is one of the first successful application of AI. In this series, we will create…
-
ELIZA Chatbot Part 3
Now that we can match the patterns, we have to get the keywords from a user’s input and find it in the rulebook. Then use the keywords to answer the question using the patterns and responses from the rulebook. Let’s go! The Rulebook For the rulebook we will be using a python file derived from…
-
Happy Halloween 2025!

It’s that time of the year again, spooky costumes, sugar filled candies, and pumpkin carving! This year I decided to create a pumpkin carving of Evelyn Wade, from one of my favorite shows on Netflix this year, Wayward. If you haven’t heard of Wayward, it is a thriller set in the early 2000’s in a…
-
ELIZA Chatbot Part 2
In order to create the rulebook, we need a dictionary of keywords, consisting of a priority number and a list of possible patterns, and responses to be made if the patterns do match. In code it looks something like this: The pattern is a list that contain a list of words to search for and…
