Plurrrr

Mon 29 May 2023

Media Queries, Responsive Design? Help me!

Media queries are a CSS language feature which allow an author to conditionally apply CSS rules according to characteristics of the device or window in which an application is being viewed. Most commonly, these might be according to the viewport width allowing CSS authors to create components and layouts that are responsive to the size of the window or device that they are being viewed in. But this may also extend to whether a user prefers light or dark mode, or even a user's accessibility preferences, plus many more properties.

Source: Everything You Want To Know About Media Queries and Responsive Design, an article by Nathan Hardy.

Bcrypt at 25: A Retrospective on Password Security

Over the years, I've observed modern password hashing algorithms significantly reduce the effectiveness of brute-force password guessing. However, password stuffing attacks—where attackers use previously leaked credentials to gain unauthorized access—continue to be a persistent threat. On the other hand, the advent of multi-factor authentication (MFA) has shifted the focus to protecting user accounts through additional layers of verification, making passwords less critical to security.

Source: Bcrypt at 25: A Retrospective on Password Security, an article by Niels Provos.