c'twebdev 2025 Inspirations

The Market for Lemons
The Market for Lemons
New web services are being built to a self-defeatingly low UX and performance standard, and existing experiences are now pervasively re-developed on unspeakably slow, JS-taxed stacks. At a business level, this is a disaster, raising the question: why are new teams buying into stacks that have failed so often before?
·infrequently.org·
The Market for Lemons
HTMX does not play well with content security policy
HTMX does not play well with content security policy
HTMX is a JavaScript framework that makes it possible to replace DOM elements with dynamic data from AJAX requests, specified by HTML attributes. Because dynamic behavior is added to the page using normal HTML tags with custom attributes, it is difficult to provide additional security against cross-site scripting (XSS) attacks.
·sjoerdlangkemper.nl·
HTMX does not play well with content security policy
HTML is like a camera - Robb Owen
HTML is like a camera - Robb Owen
A short post on the foundations of photography in relation to working on the web
·robbowen.digital·
HTML is like a camera - Robb Owen
Htmhell
Htmhell
A collection of bad practices in HTML, copied from real websites.
·htmhell.dev·
Htmhell
The Great Gaslighting of the JavaScript Era
The Great Gaslighting of the JavaScript Era
The age of frontend JavaScript frameworks eating the web world didn’t happen simply because some well-meaning developers found great DX. It happened because we were fed a line.
·spicyweb.dev·
The Great Gaslighting of the JavaScript Era
You're doing Rails wrong.
You're doing Rails wrong.
What is a Banana Curving Machine? Well it's a fantastic apparatus that does what it says. Curves Bananas.
·bananacurvingmachine.com·
You're doing Rails wrong.
Mastodon
Mastodon
Onboarding a team to #htmx - it seems like it „clicks“ once people understand `Hx-Target`, `Hx-Trigger`, `Hx-swap-oob` and `Hx-trigger-after-swap`. This seemed to be the point where the interactions usually build using a JS framework become reproducible using HTMx. People are excited, especially that they don’t have to duplicate auth. and validation.
Onboarding a team to #htmx - it seems like it „clicks“ once people understand `Hx-Target`, `Hx-Trigger`, `Hx-swap-oob` and `Hx-trigger-after-swap`.This seemed to be the point where the interactions usually build using a JS framework become reproducible using HTMx.People are excited, especially that they don’t have to duplicate auth. and validation.
·mastodon.social·
Mastodon
htmx in 100 seconds
htmx in 100 seconds
Learn the basics of htmx - an HTML-focused UI library that can handle data fetching and rendering in web applications without complex JavaScript code or fram...
·youtube.com·
htmx in 100 seconds
Hypermedia Systems
Hypermedia Systems
The revolutionary ideas that empowered the Web. A simpler approach to building applications on the Web and beyond with htmx and Hyperview. Enhancing web applications without using SPA frameworks.
·hypermedia.systems·
Hypermedia Systems
/ htmx ~ htmx sucks
/ htmx ~ htmx sucks
htmx gives you access to AJAX, CSS Transitions, WebSockets and Server Sent Events directly in HTML, using attributes, so you can build modern user interfaces with the simplicity and power of hypertext htmx is small (~14k min.gz’d), dependency-free, extendable, IE11 compatible & has reduced code base sizes by 67% when compared with react
·htmx.org·
/ htmx ~ htmx sucks
Hypertext is still the fundamental model of the web
Hypertext is still the fundamental model of the web
Related to most of the below topics is the fact that the web has, at its heart, a pretty simple and flexible architecture. 24 years in and the web’s basic conceptual model still seems remarkably robust.
·baldurbjarnason.com·
Hypertext is still the fundamental model of the web
/ htmx ~ The future of htmx
/ htmx ~ The future of htmx
In this essay, Carson Gross and Alex Petros discuss htmx's future direction and philosophy. They explain how the project aims to emulate jQuery's success through API stability, minimal feature additions, and quarterly releases while continuing to promote hypermedia-driven development and support the broader web development ecosystem.
·htmx.org·
/ htmx ~ The future of htmx
What's a Single-Page App? | jakelazaroff.com
What's a Single-Page App? | jakelazaroff.com
The web development community talks a lot about single-page apps, but are we all on a single page? Here's my ontology of web app architectures, organized by rendering and navigation.
·jakelazaroff.com·
What's a Single-Page App? | jakelazaroff.com
/ htmx ~ You Can't Build Interactive Web Apps Except as Single Page Applications... And Other Myths
/ htmx ~ You Can't Build Interactive Web Apps Except as Single Page Applications... And Other Myths
Tony Alaribe challenges common myths about multi-page applications (MPAs) and explores how modern browser technologies can enable fast, interactive, and offline-capable web applications without relying on single-page application (SPA) frameworks. Alaribe discusses advancements in service workers, caching, and cross-document transitions, offering insights into building efficient MPAs. By debunking myths like slow page transitions and the necessity of JavaScript-heavy frameworks, Alaribe highlights how developers can leverage HTML, CSS, and minimal JavaScript to create robust, user-friendly web apps in 2024.
·htmx.org·
/ htmx ~ You Can't Build Interactive Web Apps Except as Single Page Applications... And Other Myths
Simplifying web development: The case for HTMX
Simplifying web development: The case for HTMX
Modern web development embraced complexity with React, but at what cost? HTMX is a lightweight, progressively enhanced alternative, embraces fundamentals, and reduces dependency overhead.
·testdouble.com·
Simplifying web development: The case for HTMX
React is still absolutely terrible for web performance
React is still absolutely terrible for web performance
One of the oft-repeated myths I hear from framework evangelists is that tools like React are better for performance because “they use a virtual DOM instead of the real DOM.” First, that’s objectively false. In certain situations (like UIs with comically large amounts of div nesting) moving DOM diffing to a virtual layer can improve the performance of that specific step. But eventually, they have to touch the real DOM. That’s how you manipulate and update elements.
·gomakethings.com·
React is still absolutely terrible for web performance
A lot of what people use React for would be better handled with vanilla JavaScript
A lot of what people use React for would be better handled with vanilla JavaScript
This week, we’ve been looking at harmful complexity in web projects, and why choosing React for mostly static web projects is bad. These days, it’s common for mostly static websites to have a little bit of dynamic content. And while React can add that content, it’s often the wrong choice. Let’s dig in! The problem with React A lot of DOM interactions just don’t require that much JavaScript to work, but React adds tens of megabytes of code that needs to be downloaded, compiled, and parsed.
·gomakethings.com·
A lot of what people use React for would be better handled with vanilla JavaScript