ELSEIF
Your brief EB
297 stories from 172 feeds 984 clusters Refreshed 2 minutes ago next pull 00:41

TOPIC

Web

Browser engines, rendering, and the frameworks people build interfaces with. Standards that landed, APIs that shipped, and what each one means for pages you already have in production.

3TODAY
8FEEDS
4mMEDIAN
FEEDS Hacker News 67 Lobsters 27 CSS-Tricks 15 Techmeme 11 Hot notes on textlog 10 InfoQ 9 Smashing Magazine 8 www.theregister.com - Articles 7

WEB

Everything in Web.

01 607 -4

Web WebKit

Submit your ideas for Interop 2027

Why it matters — Only one feed elseif tracks has carried this so far, so there is no independent corroboration yet. Read it as a single-source report.

2 feeds
4 min
02 370 -3

Web oup.com

Splash-free urinals for global sustainability and accessibility

Why it matters — Reducing splash can help lower water consumption and cleaning requirements, supporting broader sustainability objectives. Enhancing accessibility can make public restrooms more usable for a wider range of people, influencing facility design standards.

1 feed
4 min
03 370 new

Web Phoronix

ReactOS 0.4.16 adds graphical installer, HD audio driver, and Wine 10 compatibility work

Why it matters — ReactOS remains a niche but actively developed Windows-compatible OS. This release reduces friction for new users and lays the groundwork for better application compatibility. Engineers testing legacy Windows software on open-source platforms may find the improvements useful, though ReactOS is not yet a drop-in replacement for modern Windows.

5 feeds
3 min
04 293 -1

Web The Desolation of Blog

Chrome reportedly exempts Google sites from automatic site data deletion again

Why it matters — Engineers testing web applications in Chrome may encounter unexpected data persistence for Google-owned domains. This undermines user trust in browser privacy controls and complicates compliance with data retention policies. If confirmed, the behavior could affect how developers handle session management for Google services.

2 feeds
3 min
05 293 -3

Web Lesswrong

Four-axis Bayesian model capability index now includes human performance baseline

Why it matters — A unified metric lets engineers compare diverse models without juggling many separate benchmarks. Adding human baselines provides a concrete reference point for assessing how far AI systems have progressed relative to people. Policymakers and developers can use the index to prioritize research directions and allocate resources more effectively.

1 feed
25 min
06 276 new

Web andros.dev

I don't recommend Tailwind CSS

Why it matters — Engineers evaluating utility-first CSS frameworks must weigh the trade-off between rapid assembly and long-term maintainability, as mixing concerns in markup can reduce readability and reusability in server-rendered architectures. This critique highlights that Tailwind's design system relies on developer discipline due to escape hatches like arbitrary values, and that the abstraction may hinder mastery of native CSS.

1 feed
9 min
07 272 new

Web The Verge

Firefox on iOS adds built-in ad blocking using WebKit and EasyList filters

Why it matters — This change reduces bandwidth usage and improves page load times for iOS users while maintaining compatibility with Apple’s WebKit restrictions. It also brings Firefox closer to feature parity with competing iOS browsers that already offer ad blocking.

3 feeds
2 min
09 259 -1

Web github.com

A tiny 80-line Proxy state tuple from Mador brings reactivity to any DOM

Why it matters — Mador gives engineers a way to add reactive state to existing DOM without pulling in a framework, which suits pages that only need a little reactivity. Its small size and lack of build step make it easy to adopt, but it deliberately omits components, templates, and virtual DOM, so it is not a full framework replacement.

1 feed
2 min
10 259 new

Web CSS-Tricks

CSS random() polyfill aims to bring Safari-only feature to all browsers

Why it matters — For front-end engineers, CSS random() offers a declarative way to add controlled randomness to layouts, reducing reliance on JavaScript. A polyfill would make this feature usable across browsers, but the spec is still in early draft and subject to breaking changes, so adopting a polyfill carries maintenance risk.

2 feeds
17 min
11 257 new

Web The Verge

Microsoft Edge is about to lock out older ad blockers, just like Chrome did

Why it matters — Developers and users who rely on legacy ad-blockers will lose functionality unless they migrate to Manifest V3 versions or switch browsers. The change also signals a broader industry move toward a newer extension API, affecting any tooling that interacts with the older platform.

2 feeds
2 min
12 254 new

Web kciter.so

Web applications face main thread bottlenecks under heavy interaction loads

Why it matters — The browser’s main thread handles both JavaScript execution and rendering, creating a single point of contention. When blocked, even well-optimized apps suffer from input lag, stuttering, or frozen animations. This bottleneck becomes critical in applications with live data streams, complex interactions, or high refresh-rate displays.

2 feeds
85 min
13 253 new

Web marius.blog

Firefox reportedly disables AI feature while retaining telemetry collection

Why it matters — Engineers building or testing browser-based applications need to know what data their tools collect by default. If an AI feature is disabled but its telemetry persists, it may still affect performance metrics or privacy expectations without delivering the intended functionality. The discrepancy also raises questions about how settings and data collection are decoupled in browser design

2 feeds
4 min
14 252 new

Web notebook.link

Numba JIT compiler now runs entirely in the browser via JupyterLite

Why it matters — This removes a major barrier to running scientific Python in the browser, as Numba was previously unavailable due to browser security restrictions on executable memory. Engineers can now share interactive notebooks with compiled performance without provisioning servers, making documentation and education more scalable.

2 feeds
7 min
15 252 new

Web seg6.space

we finally learned to center a div, then browsers added sidebars

Why it matters — CSS centering operates within the viewport, so any browser UI on one side shifts the apparent center toward that side, making technically correct layouts look wrong. This technique gives developers a way to correct for that offset, though it requires JavaScript and a pointer event on Chromium browsers before the adjustment can take effect.

2 feeds
2 min
16 252 new

Web yassa9.github.io

CUDA brute-force over 80 million island triangles solves photo geolocation challenge

Why it matters — The approach demonstrates a practical pipeline for image-based geolocation without metadata: geometric fingerprinting plus GPU-parallel brute force over a filtered global dataset. The filtering heuristics and sampling strategy reduced an intractable search space to a tractable one while staying on a single GPU. Engineers working on geospatial matching or image forensics can adapt the filter-then-GPU-match pattern for similar large-scale combinatorial searches.

2 feeds
12 min
17 252 new

Web portswigger.net

CSS: The bomb inside your inbox

Why it matters — Engineers building or maintaining webmail clients must now account for CSS-based attack vectors that can manipulate UI, exfiltrate data, or hijack sessions. The gap between sanitizer assumptions and browser rendering creates exploitable discrepancies. If your system renders HTML/CSS from untrusted sources, these techniques could expose users to account takeovers or data leaks.

2 feeds
46 min
18 252 new

Web google.com

Firefox 157 turns on JPEG XL decoding by default via image.jxl.enabled

Why it matters — Engineers can now use JPEG XL images in web content without requiring users to toggle flags, gaining access to its compression efficiency and features like animation and progressive rendering. The change aligns Firefox with Safari’s support while Chrome remains behind a flag, affecting cross-browser testing and performance considerations.

2 feeds
5 min
19 252 new

Web bram.us

CSSWG adds .prefix-* selector to Selectors Level 5 spec

Why it matters — This selector removes the need for brittle attribute selectors or extra base classes when styling prefixed utility classes in design systems. However, since it only exists in spec text and has no browser support yet, it will be years before it can be used in production.

2 feeds
5 min
20 252 new

Web chrisburnell.com

HTML now supports dialogs, popovers, accordions, and command-driven interactions without JavaScript

Why it matters — Engineers can simplify front-end code by replacing custom JavaScript implementations with native HTML features. This reduces bundle size and improves maintainability, but browser support varies and may limit adoption in legacy environments. The shift reflects a broader trend toward standardizing common UI behaviors in HTML itself.

2 feeds
4 min