Search
CSS Animation Timelines: Building a Rube Goldberg Machine
12.5.2020
If you’re going to build a multi-step CSS animation or transition, you have a particular conundrum. The second step needs a delay that is equal to the duration of the first step. And the third step is equal to the duration of the first two steps, plus any delay in between. It gets more...
Modern CSS Solutions for Old CSS Problems
11.5.2020
This is a hell of a series by Stephanie Eckles. It’s a real pleasure watching CSS evolve and solve problems in clear and elegant ways.
Just today I ran across this little jab at CSS in a StackOverflow answer from 2013.
This particular jab was about CSS lacking a way to pause between...
Cardano to Roll Out Commercial Infrastructure, Denies Coronavirus Delay
15.3.2020
Cardano development moves along undisturbed by the coronavirus, as its team works on critical commercial infrastructure
Careful with Nested `display: grid; height: 100%;`
11.3.2020
It's not every day you can feel CSS be slow at something. Reddit user jgbbrd discovered nesting grid containers that all have 100% height can cause many-seconds of rendering delay. Probably not something you'll ever have to worry about, but still, interesting. From the comments:
What a funny...
Japanese Finance Minister Urges China to Delay its Digital Fiat
24.2.2020
Japanese finance minister Taro Aso has told G20 central bank governors and finance ministers to delay their digital currency plans, claiming that most countries are not ready to issue digital fiats – including China.
Bloomberg Japan reports that Aso warned counterparts at a recent G20 summit...
Coronavirus Outbreak Forces Chinese Crypto ASIC Manufacturers to Delay Orders
3.2.2020
Bitcoin mining rig deliveries from China are delayed due to the coronavirus according to a few Chinese manufacturers. Microbt and Ebang sent notices to customers via the firm’s Wechat channels. Sources say Bitmain and Innosilicon are delaying mining device shipments as well. Also read: How...
New Ethereum Hard Fork Coming in January to Delay Ice Age
17.12.2019
As mistakes do 'happen,' Ethereum (ETH) is now forced to have another hard fork in January, less than a month after the Istanbul upgrade.
During the Istanbul update earlier this month, the developers have made a mistake in estimating when the feature known as the difficulty bomb which slows down...
Crypto Custody Firm Trustology Cuts Staff as Banks Delay on Digital Assets
12.12.2019
Digital asset custody firm Trustology has cut seven of its 18 staffers as the big banks it courted are taking longer than expected to jump into crypto
Ethereum’s Proposed Hard Fork ‘Muir Glacier’ Would Delay Impending Ice Age
4.12.2019
Ethereum’s proposed Muir Glacier hard fork would delay the impending Ice Age mechanism
European AML Regulations Follow the US Path With a Six-Years' Delay
30.11.2019
The EU’s AML legislation is following the U.S.’s path but with significant delays for the emerging tech industry
TON Gets Vote of Confidence: Investors Reject Refund Amid SEC Hearing Delay
24.10.2019
Attorney says that the SEC is cracking down on cases like TON, “You need to get one thing straight — the SEC isn’t playing around.”
Telegram Offers to Postpone Launch of the TON Network
18.10.2019
Telegram, which was surprised with a last minute restraining order on the sale of its tokens in the U.S., is now ready to delay the launch of the TON network until the spring of next year. The company has informed the New York court reviewing the case that it can suspend all operations with grams...
Telegram Could Delay the Issue of its Crypto After the US Stops Token Sale
14.10.2019
Telegram, the popular messaging app offering encrypted messaging service, could defer the issuance of its digital currency since the United States Securities and Exchange Commission (SEC) has ordered the company to cease the reportedly unlawful sale of its Gram token in the nation. Initially...
Telegram May Delay Gram Launch After Regulatory Action from the SEC
14.10.2019
Telegram admits that it could postpone the launch of its TON blockchain network and Gram token after a late intervention from the American regulatory Securities and Exchange Commission (SEC) on Friday.
The SEC has filed an emergency action and obtained a temporary restraining order preventing...
Weekly Platform News: Tracking via Web Storage, First Input Delay, Navigating by Headings
4.10.2019
In this week's roundup, Safari takes on cross-site tracking, the delay between load and user interaction is greater on mobile, and a new survey says headings are a popular way for screen readers to navigate a webpage.
Let's get into the news.
Safari’s tracking prevention limits web storage
Some...
Video Shows $10M Chinese Bitcoin Mining Farm in Flames
1.10.2019
During the early morning hours of September 30, a nine-minute video circulated on Twitter showing a large bitcoin mining farm burning down. Sources say the mining farm belonged to the company Innosilicon and roughly $10 million worth of mining rigs were destroyed. Also Read: Central Banks in Panic...
Craig Wright Asks for 30-Day Extension to Delay 500K Bitcoin Payout
18.9.2019
After a 14-day extension, Craig Wright now wants 30 more days to pay 500K Bitcoin to Dave Kleiman’s estate
Binance iOS App Listed on Apple App Store After Delay for Review
19.8.2019
Binance’s iOS app is officially listed on the Apple App Store once more after a lengthy review period
Collective #541
19.8.2019
Get Waves * StoryTime * MC.JS * Input delay * Variable Font Animation * Divjoy * HeadBanger
Collective #541 was written by Pedro Botelho and published on Codrops
Staggered CSS Transitions
14.8.2019
Let's say you wanted to move an element on :hover for a fun visual effect.
@media (hover: hover) {
.list--item {
transition: 0.1s;
transform: translateY(10px);
}
.list--item:hover,
.list--item:focus {
transform: translateY(0);
}
}
Cool cool. But what if you had several list...