Articles tagged with: Javascript

JavaScript RLE algorithm v2 - Sprite Tiles

Summary: Testing the Javascript RLE algorithm compression applied to arcade game sprite tiles


JavaScript Run-Length Encoding for Arcade Sprites

Summary: A JavaScript implementation of the RLE algorithm, applied to retro arcade game sprites.


An Entity Component System in Javascript

Summary: An implementation of an Entity Component System (ECS) architecture pattern in JavaScript, with code and demo both provided.


Tiny Markdown-Based Wiki

Summary: Created a simple web alternative to sync and view markdown files using HTML, CSS, and JavaScript. It fetches markdown files, renders them client-side, and supports light/dark themes


Word prediction using a trie data structure

Summary: Explores word prediction/autocomplete using a trie data structure. Includes a demo and the source code of the trie implementation.