Accessible AJAX: Designing Asynchronous Interactions Without Losing UX
By following these tips, AJAX improves the experience for everyone without excluding anyone, keeping the interface fast, perceivable, and predictable.
Masking passwords with JavaScript
In this article, we'll explore a compact JavaScript snippet that generates a secure password, masks it for display, and provides a user-friendly way to copy it to the clipboard.
Getting Started with the Supabase JavaScript Client
Supabase is an open-source Firebase alternative that offers a real-time database, authentication, and storage. This article guides you through using the Supabase JavaScript client to connect to your Supabase backend, perform CRUD operations, and handle authentication.
Converting Dates from Excel Format to Standard Format with JavaScript
When working with Excel files, it's common to encounter dates represented as integers.
The Singleton Design Pattern in TypeScript
The Singleton design pattern ensures that a class has only one instance and provides a global access point to it.
Using the crypto object in JavaScript
The crypto object in JavaScript provides cryptographic functionalities that can be used to generate secure random numbers, create hashes, encrypt and decrypt data.