Search
Clarifying the Relationship Between Popovers and Dialogs
23.10.2024
The difference between Popovers (i.e., the popover attribute) and Dialogs (i.e., both the <dialog element and the dialog accessible role) is incredibly confusing — so much that many articles (like this, this, and this) have tried to …
Clarifying the Relationship Between Popovers...
How to Get Started in New World Aeternum
15.10.2024
A total overhaul for New World certainly wasn’t on everyone’s bingo sheet, but here we are, pleasantly surprised. New World Aeternum completely revamps the original game from the ground up, making MMORPG more user-friendly, approachable, and, in some spots, downright fun. With such a massive, open...
How are the `colspan` and `rowspan` attributes different?
15.8.2024
Yes, yes. Functionally, they are different. But heck if I didn’t know about the wacky thresholds until Jens Oliver Meiert tooted a pair of quick polls.
According to the HTML Standard:
If the current cell has a colspan attribute, then 
…
How are the `colspan`...
HTML Attribute to Allow/Disallow Handwriting Input
12.8.2024
A new explainer for a new HTML attribute to handle handwritten inputs. Like this:
<input type="text" handwriting="true" ... <input type="text" handwriting="false" ... <textarea handwriting="" ... <!-- evaluates to "true" --<div contenteditable...
Case Insensitive CSS Attribute Selector
19.6.2024
CSS selectors never cease to amaze me in how powerful they can be in matching complex patterns. Most of that flexibility is in parent/child/sibling relationships, very seldomly in value matching. Consider my surprise when I learned that CSS allows matching attribute values regardless off case!...
Two Popular Fallout 76 Builds To Stop You From Dying In The Wasteland
24.4.2024
Fallout 76 isn’t like Bethesda’s previous open-world RPGs. While those single-player adventures were somewhat forgiving campaigns that let you build your character however you wanted, the multiplayer spin-off is full of bullet sponge-y enemies that require you to focus on a particular skill set...
HTML popover Attribute
15.4.2024
Modals have been an important part of websites for two decades. Stacking contents and using fetch to accomplish tasks are a great way to improve UX on both desktop and mobile. Unfortunately most developers don’t know that the HTML and JavaScript specs have implemented a native modal system...
Korean Crypto Exchanges Block Romance Scammers’ Access to Digital Assets Worth Over $82 Million
31.1.2024
South Korean cryptocurrency exchanges have successfully stopped romance scams and voice phishing criminals from siphoning digital assets worth over $82.6 million in the past year. The exchanges attribute their success in blocking criminals to abnormal transaction detection systems, which assist...
Russian Ruble Plunges to 16-Month Low vs the US Dollar — Experts Cite Oil Price Cap
15.8.2023
The Russian currency’s exchange rate versus the U.S. dollar recently dropped below RUB100 per greenback — its lowest in 16 months. Economists attribute the ruble’s latest plunge to the effectiveness of a price cap imposed on Russian oil by Western countries. Russ Mould said...
Bitcoin Network’s Inherent Properties Can Be Leveraged to ‘Enhance the Security of PoS Chains’ — Babylon Chain CTO
11.8.2023
Fisher Yu, the co-founder and chief technology officer (CTO) at the bitcoin staking protocol Babylon Chain, has argued that when staking bitcoin, stakers “do not need to trust or give their bitcoins to any third parties.” According to Yu, such an attribute helps to “eliminate...
ETF Analysts: Spot Bitcoin ETF Approval Odds at 65% Amid Pressure From Blackrock
3.8.2023
According to James Seyffart and Eric Balchunas, two analysts specializing in exchange-traded funds (ETFs) at Bloomberg, the likelihood of a spot bitcoin ETF debut in the U.S. has surged to 65%. These analysts attribute this increase to “pressure from Blackrock and possibly Democrats,”...
Deflecting Blame — Bank of England Governor Bailey Accuses UK Retailers of Overcharging Customers
9.7.2023
After the Covid-19 pandemic, many people believe the implementation of extensive stimulus measures and quantitative easing (QE) policies resulted in an overwhelming surge of inflation that has burdened millions across the globe. While certain individuals attribute this economic turmoil to...
Chainalysis: Crypto Scam Revenue Dropped 46% in 2022
21.2.2023
Revenue from cryptocurrency scams dropped 46% in 2022, according to blockchain data analytics firm Chainalysis. “We attribute most of this decline to market conditions, as scam performance tends to worsen when cryptocurrency prices are in decline,” the firm explained. ‘Crypto Scam...
Localbitcoins, the Pioneer P2P Bitcoin Exchange, Shuts Down After a Decade of Service Due to Crypto Winter
9.2.2023
Localbitcoins, the Helsinki, Finland-based bitcoin exchange founded in 2012, is closing operations after over a decade of service. The company’s operators attribute the shutdown to the “ongoing crypto-winter,” which has left them unable to continue offering their bitcoin...
AR, VR, and a Model for 3D in HTML
27.1.2023
Tucked down somewhere in the Safari Technology Preview 161 release notes is a seemingly innocous line about support for a new HTML element and attribute:
Added support for <model src> and honor <source type> attributes (257518@main)
Anytime I …
AR,...
Unchain My Inaccessibly-Labelled Heart
14.12.2022
Suzy Naschansky from the HTMHell Advent Calendar:
<h2 id="article1-heading"All About Dragons</h2<pI like dragons. Blah blah blah blah blah.</p<p<a id="article1-read-more" aria-labelledby="article1-read-more article1-heading"Read more</a</p
See that aria-labelledby...
Elden Ring Gets Massive Combat Overhaul As It Makes Way For DLC
13.10.2022
Another major update is shaking up the world of Elden Ring, and this time FromSoftware is calibrating the changes differently depending on whether you’re playing the main game or dunking on strangers in PVP. That addresses a longtime request by fans to balance the two sides of the game separately...
Mastering SVG’s stroke-miterlimit Attribute
24.5.2022
So, SVG has this stroke-miterlimit presentation attribute. You’ve probably seen it when exporting an SVG from a graphic editor program, or perhaps you find out you could remove it without noticing any change to the visual appearance.
After a good …
Mastering SVG’s stroke-miterlimit...
CSS :optional
22.5.2022
A decade ago HTML and CSS added the ability to, at least signal, validation of form fields. The required attribute helped inform users which fields were required, while pattern allowed developers to provide a regular expression to match against an <input>‘s value. Targeting required...
Favicons: How to Make Sure Browsers Only Download the SVG Version
5.11.2021
Šime Vidas DM’d me the other day about this thread from subzey on Twitter. My HTML for favicons was like this:
<!-- Warning! Typo! --<link rel="icon" href="/favicon.ico" size="any"<link rel="icon" href="/favicon.svg" type="image/svg+xml"
The attribute size is a typo there...