Search
Plus: the hottest pre-release Steam tags?
4.2.2022
Still needs some refining, but we're getting there
How to Cycle Through Classes on an HTML Element
26.1.2022
Say you have three HTML classes, and a DOM element should only have one of them at a time:
<div class="state-1"</div<div class="state-2"</div<div class="state-3"</div
Now your job is to rotate them. That is, cycle through classes …
How to Cycle Through Classes on...
Fearing a Hawkish Fed: Economists Focus on Upcoming FOMC Meeting as Global Market Rout Slows
25.1.2022
Global markets have been feeling the pressure of fear and uncertainty, as the upcoming Federal Open Market Committee (FOMC) plans to make a decision on Wednesday concerning changing the current monetary easing policy and raising the benchmark interest rate. Economists and market analysts fear...
PlotX Closes a $5 Million Pre-Series A Funding Grant from Polygon and Hashed; Announcing a New Staking Program
19.1.2022
PlotX, one of the fastest-growing GameFi dApp on the Polygon ecosystem, has concluded a $5 million pre-Series, a funding round and grant. As per a press release on January 17, PlotX received funds from Polygon Studios and Hashed with participation from high-profile crypto venture funds, including...
African Startup Raises $6 Million From Pre-Series A Funding Round
18.12.2021
Africa Blockchain Lab recently said it has raised $6 million from a pre-Series A investment round and will use the capital to fund the launch of a crypto wallet. Driving Adoption of Cryptocurrencies An African crypto startup, Africa Blockchain Lab, recently confirmed it has received $6 million from...
Minereum World Metaverse Is Planned to Be Launched in Q1 2022, Land Pre-Sale Is Live
16.12.2021
Minereum, the project behind the first self-mining smart contract, welcomes you to The Minereum World – an exciting and interactive play-to-earn 3D game venture where users can come together virtually in the metaverse! The goal of the game is to grab and own as much land as possible!...
Eye Droppin’
9.12.2021
Quick hits! There is a new web API called EyeDropper:
if ('EyeDropper' in window) {
const eyeDropper = new EyeDropper();
try {
// This has gotta be triggered by a user interaction,
// so consider this pseudo-code.
const result …
Analysts say Bitcoin’s behavior at $47.5K mirrors the pre-breakout 2017 market
9.12.2021
Bitcoin price succumbed to another wave of selling, but analysts say the current market structure at $47,500 mirrors the early bull-market from 2017
Nintendo Might Have To Make Pre-Order Refunds Easier After Losing Lawsuit
6.12.2021
Last week, following a lengthy appeal process, the Federation of German Consumer Organisations (VZBV) successfully argued that Nintendo’s current eShop pre-order return policies are insufficiently flexible, and the console maker may now have to further loosen its heavily criticized digital...
When is it “Right” to Reach for contain and will-change in CSS?
26.11.2021
I’ve got some blind spots in CSS-related performance things. One example is the will-change property. It’s a good name. You’re telling the browser some particular property (or the scroll-position or content) uh, will, change:
.el {
will-change: opacity;
…
The post When...
CSS “decorations”
22.11.2021
A reader wrote to me the other day asking about this bit of CSS they came across in Wikipedia’s Common.css:
.mw-collapsible-leftside-toggle .mw-collapsible-toggle {
/* @noflip */
float: left;
/* @noflip */
text-align: left;
}
What’s that @noflip business? That’s...
India Considers Allowing Only Preapproved Cryptocurrencies — Crypto Regulation Expected by Year-End: Report
19.11.2021
India is reportedly considering allowing only preapproved cryptocurrencies to be listed and traded on exchanges. In addition, the government aims to both introduce and pass a cryptocurrency law by year-end. Indian Crypto Regulation and Preapproved Cryptocurrencies India is considering allowing only...
Liquid Craft to Launch 1500 Liquor Backed NFTs on ETH and BSC 23rd Nov
19.11.2021
PRESS RELEASE. Liquid Craft – is bringing a new concept to the NFT space by using collectible handcrafted bottles of Liquor to add value to their digital art pieces. Their first series Dragons and Bourbon is launching for pre-sale on Nov 20th at 12 PM PST with the public sale going live...
Toy Companies Hasbro, Funko, and Mattel Turn to Wax as Trusted Partner
15.11.2021
William Quigley loved baseball cards during his pre-teens. As the founder of WAX (Worldwide Asset Exchange), you might think Quigley’s crowning achievement may have been to strike a deal with Topps Baseball Card company, so WAX could manage and create NFTs with the MLB. However, Quigley...
Discord community splits as CEO unveils pre-released Ethereum integration
9.11.2021
The new feature will allow Discord users to actively participate in upcoming crypto initiatives such as NFTs, Web 3 and token adoption
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...
Proxying Third-Party JavaScript as First-Party JavaScript (and the Potential Effect on Analytics)
2.11.2021
First, check out how incredibly easy it is to write a Cloudflare Worker to proxy another URL:
addEventListener("fetch", (event) ={
event.respondWith(
fetch("https://css-tricks.com")
);
});
It doesn’t have any error handling or anything, but hey, it works:
Now imagine how …
The...
HeliconNFT: All-New Play-to-Earn NFT Ecosystem Launches NFT Mystery Box Event and Battlefy Partnership
28.10.2021
PRESS RELEASE. Singapore: HeliconNFT, the brand-new, global, gaming-focused NFT ecosystem, which recently unveiled a partnership with Battlefy, has announced that it will launch an NFT mystery box event on Sunday, 24th October. Ahead of the event, users will be given the opportunity to access...
A Themeable React Data Grid With Great UX-Focused Features
7.10.2021
(This is a sponsored post.)
KendoReact can save you boatloads of time because it offers pre-built componentry you can use in your app right away. They look nice, but more importantly, they are easily themeable, so they look however …
The post A Themeable React Data Grid With Great UX-Focused...
The Options for Password Revealing Inputs
6.10.2021
In HTML, there is a very clear input type for dealing with passwords:
<input type="password"
If you use that, you get the obfuscated bullet-points when you type into it, like:
••••••••
That’s the web trying to help with security. If …
The post The Options for Password Revealing...