Search
Practical Use Cases for JavaScript’s closest() Method
12.8.2020
Have you ever had the problem of finding the parent of a DOM node in JavaScript, but aren’t sure how many levels you have to traverse up to get to it? Let’s look at this HTML for instance:
<div data-id="123"<buttonClick me</button</div
That’s pretty straightforward, right? Say...
Peru, India, Indonesia, Nigeria Among Countries With Highest Crypto Usage Increase
11.8.2020
Peru, India, Indonesia, and Nigeria are among the countries with the biggest increase in crypto wallet creation based on data from Blockchain.com, which has over 52 million wallets created by users worldwide. Nigeria has been the most trending country in recent months, with a 60% increase since...
System UIcons
11.8.2020
This is a great collection of icons by Corey Ginnivan that’s both free and with no attribution required when you use them. The style is super simple. Each icon looks like older versions of the icons from macOS to me because they’re cute but not too cute.
Also? The icon picker UI is slick and looks...
IP Australia and National Rugby League Use Blockchain Against Fake Products
10.8.2020
The intellectual property rights issuer of Australia will use blockchain to help NRL fight the sale of counterfeit merchandise
South Korean Beachgoers Can Now Use Bitcoin to Pay for Services
9.8.2020
The Haeundae Beach System in Busan is part of a pilot project that aims to offer crypto payment solutions to beachgoers in the summertime
Nailing the Perfect Contrast Between Light Text and a Background Image
7.8.2020
Have you ever come across a site where light text is sitting on a light background image? If you have, you’ll know how difficult that is to read. A popular way to avoid that is to use a transparent overlay. But this leads to an important question: Just how transparent should that overlay...
Every Website is an Essay
7.8.2020
Every website that’s made me oooo and aaahhh lately has been of a special kind; they’re written and designed like essays. There’s an argument, a playfulness in the way that they’re not so much selling me something as they are trying to convince me of the thing. They use words and type and color...
Binance Says New York Banks Can Now Use Its Stablecoin After Watchdog Approval
7.8.2020
NYDFS has added Binance USD to its approved list, cutting away most of the red tape around custody and listing of the stablecoin
Match Accented Letters with Regular Expressions
6.8.2020
Regular expressions are used for a variety of tasks but the one I see most often is input validation. Names, dates, numbers…we tend to use regular expressions for everything, even when we probably shouldn’t. The most common syntax for checking alphabetic characters is A-z but what...
Crypto Class Action Asks to Use Social Media to Wrangle Flighty ICO Issuer
5.8.2020
Plaintiffs as the court to authorize communication via email and Twitter to Status co-founders as part of a class-action lawsuit over SNT’s ICO
First Mover: Ethereum’s Transition to Staking Could Push More Traders to Use Derivatives
5.8.2020
As Ethereum starts its multiyear transition to a "staking" network, analysts say a reduction in token liquidity may push traders to derivatives markets.
The Cicada Principle, revisited with CSS variables
5.8.2020
Lea Verou digging up the CSS trickery classic and applying it to clip the backgrounds of some code blocks:
The main idea is simple: You write your main rule using CSS variables, and then use :nth-of-*() rules to set these variables to something different every N items. If you use enough...
Making Sense of react-spring
4.8.2020
Animation is one of the trickier things to get right with React. In this post, I’ll try to provide the introduction to react-spring I wish I had when I first started out, then dive into some interesting use cases. While react-spring isn’t the only animation library for React, it’s one of the more...
'Coca-Cola Bottling Harbor' To Use Baseline Protocol & Ethereum Mainnet
4.8.2020
CONA (Coke One North America), builder of apps on blockchain Provide and enterprise blockchain solutions developer Unibright have launched a project which uses the Baseline Protocol and the Ethereum (ETH) mainnet. It's meant to establish a "Coca-Cola Bottling Harbor" which...
Friction Logs
4.8.2020
I first heard the term “Friction Log” from Suz Hinton back in April on ShopTalk. The idea makes an extreme amount of sense: Use a thing, and write down moments where you felt friction.
Did some installation step bug out? Did you see something that the docs didn’t mention? Did...
Promise.allSettled
3.8.2020
The Promise object has many useful functions like all, resolve, reject, and race — stuff we use all the time. One function that many don’t know about is Promise.allSettled, a function that fires when all promises in an array are settled, regardless of whether any of the promises...
China Never Banned Bitcoin as Commodity, Beijing Arbitration Commission Explains
2.8.2020
The Beijing Arbitration Commission has published an article clarifying that bitcoin’s use as a commodity has never been banned in China. It explains that the Chinese authorities’ attitude toward controlling bitcoin revolves around three areas. China Recognizes Bitcoin as Commodity...
Putin Signs Law Giving Cryptocurrency Legal Status in Russia
2.8.2020
Russia’s bill to regulate cryptocurrencies has been signed into law by President Vladimir Putin. The new law gives legal status to cryptocurrency but prohibits its use as a means of payment. Russian Crypto Bill Signed Into Law Russian President Vladimir Putin signed into law Friday the bill...
Spotting a Trend
31.7.2020
There are tons of smokin’ hot websites out there, with an equal or greater number of talented designers and developers who make them. The web is awesome like that and encourages that sort of creativity.
Even so, it amazes me that certain traits find their way into things. I mean, it makes...
SVG Title vs. HTML Title Attribute
30.7.2020
You know the title attribute? I can do this:
<div title="The Title"I'm a div with a `title`
</div
And now if I’m on a device with a mouse pointer and hover the cursor over that element, I get…
Which, uh, I guess is something. I sometimes use it for things like putting...