photo of blog creator Balen Dezai

On a daily, I work with web, software, and sometimes embedded technologies. I created this blog to share and document what I've created and learned during my coding 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

Tue Dec 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

Thu 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.