Articles tagged with: Javascript

Zombie Infection Simulator mini-game

Summary: The development of a Zombie Infection Simulator mini-game, porting a Java + Processing framework game to Javascript + HTML 5. The game can be played online and the source code is available on Github.


CSS-Only dark mode in 15 lines of code

Summary: A simple 15-line CSS code for implementing a dark mode UI, without the need for Javascript or complex CSS rules, and includes good practice tips.


PBRR - Pretty Basic RSS Reader

Summary: PBRR - Pretty Basic RSS Reader is a simple, Python-based RSS reader that fetches and regenerates feeds hourly, groups sites into categories, and differentiates new posts from seen ones.


All roads lead to static typing

Summary: The evolution of programming languages like PHP, Javascript, Ruby, and Python towards static typing, highlighting its benefits for understanding code, reducing errors, and improving scalability.


Debouncing, Throttling and Queueing

Summary: Four JavaScript techniques for managing event handlers: Debounce, Leading Edge Debounce, Throttle, and Queue, providing example code and explaining their uses and benefits.