Blog to share what I've learned during my adventures in various hobby projects and fields of interest

A screenshot of the game "Brix" playing on the emulator.

Creating a Chip8 emulator using only javascript and a browser

December 15, 2020

Creating a Chip8 emulator is a great introduction to learning the basics of emulator creation. Topics such as bitwise operations, bit graphic programming, and reading technical manuals are all necessary things to start on the path of emulator creation.

a sudoku grid from own project.

Creating a fast sudoku solving algorithm in javascript

May 14, 2020

Building a super fast sudoku solving algorithm is pretty difficult, however there are a lot of smart decisions one can consider while contructing a sudoku solving algorithm. Today we will create one using Javascript.