Search
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...
Getting the Most Out of Variable Fonts on Google Fonts
30.7.2020
I have spent the past several years working (alongside a bunch of super talented people) on a font family called Recursive Sans & Mono, and it just launched officially on Google Fonts!
Wanna try it out super fast? Here’s the embed code to use the full Recursive variable font family from Google...
A Bit on Web Component Libraries
29.7.2020
A run of Web Components news crossed my desk recently so I thought I’d group it up here.
To my mind, one of the best use cases for Web Components is pattern libraries. Instead of doing, say, <ul class="nav nav-tabs"> like you would do in Bootstrap or <div class="tabs"> like...
Russians in Yaroslavl, Kursk to Use Blockchain Voting in 2021 Election
28.7.2020
Citizens in two more Russian regions are set to be granted the right to cast their votes on a blockchain-powered platform when the country goes to the polls in parliamentary elections next year.
Per media outlet Open Media, the Central Election Commission of Russia (CEC) has stated that residents...
Ignorance and Greed Sustain Cryptocurrency Scams in Nigeria
28.7.2020
Nigeria is not only Africa’s biggest cryptocurrency market but is also a leading adopter of digital currencies globally. Official figures show the country is well ahead of fellow African countries. Citizens of the West African state use cryptocurrencies for cross border payments as well...
Americans to Buy Bitcoin With Their Second Stimulus Checks After Initial Investment Turned in 50% Profit
27.7.2020
U.S. investors may be planning to use their second $1,200 stimulus money to buy bitcoin – again. The U.S. government is, on Monday, expected to approve plans for this second payout, White House officials have confirmed. The bailout is intended to cushion families against the covid-19 fallout....
Using Trello as a Super Simple CMS
27.7.2020
Sometimes our sites need a little sprinkling of content management. Not always. Not a lot. But a bit. The CMS market is thriving with affordable, approachable products, so we’re not short of options. Thankfully, it is a very different world to the one that used to force companies to splash out...
Second Stimulus Check Coming, But Will Americans Use it on Crypto?
27.7.2020
Americans who invested the entirety of their first $1,200 stimulus checks in Bitcoin have seen more than a 40% return as BTC passes $10,200
Gaming Industry Use of Blockchain May Lead to Mass Adoption
26.7.2020
Blockchain technology has the potential to create a new era of gaming and drive true adoption in the industry
Put to Good Use: Ethereum Racks Up Serious Numbers to Set Benchmarks
26.7.2020
The popularity of DApps, DeFi tokens and their increasing market share of the Ethereum ecosystem as a result of platform’s evolution?
A Font-Like SVG Icon System for Vue
24.7.2020
Managing a custom collection of icons in a Vue app can be challenging at times. An icon font is easy to use, but for customization, you have to rely on third-party font generators, and merge conflicts can be painful to resolve since fonts are binary files.
Using SVG files instead can eliminate...
Holy Albatross with Widths
24.7.2020
Heydon’s Holy Albatross is a technique to have a row of elements break into a column of elements at a specific width. A specified parent width, not a screen width like a media query would have. So, like a container query (ya know, those things that don’t exist yet that we...
Accordion Rows in CSS Grid
23.7.2020
I’d bet grid-template-columns is used about 10× more than grid-template-rows, but maybe everyone has just been missing out. Eric Meyer chucks a bunch of row lines onto his main site layout grid like this:
grid-template-rows: repeat(7, min-content) 1fr repeat(3, min-content);
That way, if...