| Random Link ¯\_(ツ)_/¯ | ||
| Jul 8, 2026 | » | System Design Practice: Metrics Monitoring System
5 min; updated Jul 9, 2026
Functional Requirements
Scale: 500K servers, 5M metrics per second, ~1GB/s raw ingestion. ... |
| May 29, 2023 | » | Query Languages for Data
3 min; updated Jul 19, 2025
Query Languages for DataIf you have a list of animal species and you want to return only the sharks in the list, a relational algebra expression would be \( \text{sharks} = \sigma_{\text{family = “Sharks”}}(\text{animals}) \). SQL queries follow the structure of relational algebra closely: … while an imperative query would be: |
| Feb 9, 2025 | » | WWW Watering Hole
4 min; updated Feb 9, 2025
As the web evolves, where do practitioners congregate and exchange ideas? Working Groupsdevelops standards and guidelines to help everyone build a web based on the principles of accessibility, internationalization, privacy and security. publishes standards and drafts , which are then implemented by browser vendors, e.g., Chromium, Firefox, and Safari. Topics of interest: accessibility, browser, CSS, data, DOM, digital publishing, graphics, HTML, HTTP, internationalization, media, performance, privacy, protocol, security, web API, web fonts, Web of Things (WoT), and XML. ... |
| May 5, 2024 | » | Inheritance
2 min; updated May 5, 2024
MixinsA mix-in is an abstract subclass. This technique is especially useful in languages where a class can only have a single superclass. |
| Apr 28, 2024 | » | The Cards Manager
4 min; updated Apr 28, 2024
UI Design![]() Legacy card viewing UI at /browse. This time we’ll use the more semantic and a11y-friendly
|
| Apr 19, 2024 | » | Client/Server Interface
8 min; updated Apr 19, 2024
How to handle redirects without setting |
| Apr 18, 2024 | » | Use of Local Storage
3 min; updated Apr 18, 2024
Back when I wrote this, the motivation for using
|


Introduced to mixins by . Didn’t know that there are passionate advocates for this, e.g., ’s “You can even look at normal subclass inheritance as a degenerate form of mixin inheritance where the superclass is known at class definition time, and there’s only one application of it.”