Search
Fed Chair Says US Inflation ‘More Enduring Than Anticipated’ — Strategist Predicts 10% Market Correction
29.9.2021
Americans are not only worried about future inflation, but they are also dealing with dwindling purchasing power in real-time. Meanwhile, on Thursday, Federal Reserve chairman Jerome Powell plans to address the Senate Banking Committee and discuss inflation. In the remarks pre-published from...
Blockchain Startup Triall Introduces a Tokenized Ecosystem to Speed Up and Improve Medical Research
28.9.2021
PRESS RELEASE. Triall launches its main utility token TRL on Uniswap following a successful token pre-sale that raised more than 2 million USD. AMSTERDAM, Sept 28, 2021 – Blockchain startup Triall launched its main utility token TRL in an initial DEX offering (IDO) on Uniswap at 13:00...
Before NFTs: Surging interest in pre-CryptoPunk collectibles
27.9.2021
Court Extends Detention of Finiko Pyramid Founder Doronin and His Right-Hand Man
25.9.2021
A court in Tatarstan has extended the detention of Kirill Doronin, founder of Russia’s largest Ponzi scheme in recent times, Finiko. Doronin will spend at least two more months in custody as authorities fear he could hide from law enforcement. Ilgiz Shakirov, vice-president of the crypto...
Konami Rolls Out Loot Box Pre-Orders
16.9.2021
Over the summer, Konami announced its killing of the Pro Evolution Soccer brand (known as Winning Eleven in Japan) by morphing the popular franchise into the free-to-play eFootball.Read more
What Deathloop Does Differently From Dishonored and Prey
16.9.2021
Blackreef is a city built for violence. Every citizen is armed, and every law is overturned. It is a 24 hour party, and sometimes partying involves shooting your friend in the head...I guess. I’ve never been a real party girl.Read more
“Just in Time” CSS
10.9.2021
I believe acss.io is the first usage of “Atomic CSS” where the point of it is to be a compiler. You write CSS like this:
<div class="C(#fff) P(20px)"text
</div
And it will generate CSS like:
.C\(\#333\) {
color: #333;
…
The post “Just in Time” CSS appeared...
Native JavaScript Routing?
23.8.2021
We can update the URL in JavaScript. We’ve got these APIs:
// Adds to browser history
history.pushState({}, "About Page", "/about");
// Doesn't
history.replaceState({}, "About Page", "/about");
JavaScript is also capable of replacing any content in the DOM....
The Big Gotcha With Custom Properties
19.8.2021
I’ve seen this confuse more than a handful of people recently, including myself, so I’m making sure it’s written down.
Let’s chuck a couple of custom properties into CSS:
html {
--color-1: red;
--color-2: blue;
}
Let’s use them right …
The post The...
CSS Nesting, specificity, and you
10.8.2021
Here’s Kilian Valkhof on CSS nesting which isn’t available in browsers yet, but will be soon. There are a few differences he notes between CSS nesting and nesting in Sass or Less though. Take, for example, the following code:
div
…
The post CSS Nesting, specificity, and you appeared...
Choice Words about the Upcoming Deprecation of JavaScript Dialogs
9.8.2021
It might be the very first thing a lot of people learn in JavaScript:
alert("Hello, World");
One day at CodePen, we woke up to a ton of customer support tickets about their Pens being broken, which ultimately boiled down to …
The post Choice Words about the Upcoming Deprecation of JavaScript...
Analogue Pocket Pre-orders: The Kotaku Review
6.8.2021
The other day a Redditor pointed out that a full god-dang year has passed since Analogue Inc. offered the world a fleeting, three-minute window to pump its coffers full of cash in exchange for a promise that we’d one day receive a physical device called the Analogue Pocket, billed to be...
Robinhood stock outruns Bitcoin intraday crash, down over 10% in pre-market
5.8.2021
The decline followed Robinhood Market's announcement that it would sell up to 98 million Class A shares over time
Record 57K BTC leave exchanges in one day dropping Bitcoin reserves to pre-crash levels
29.7.2021
57,000 BTC leaves exchanges in a single day as demand returns with Bitcoin at the upper end of its multi-month trading corridor
ECMAScript proposal: JSON modules
21.7.2021
Dr. Axel Rauschmayer looks at JSON modules, which is already live in Chrome 91 (but nothing else). It looks just like an ES Modules-style import, only you asset the type at the end.
import configData from './config-data.json' assert {type:
…
The post ECMAScript proposal: JSON modules...
Discovering your game's regional appeal, pre-launch?
21.7.2021
We've got some data suggestions for youuuu!
Ve středu vychází Pokémon Unite, pre-load už je k dispozici
20.7.2021
Pre-Crash Survey: 70% Of Institutional Investors Considered Buying Crypto
20.7.2021
Before the crypto market started its downturn in April this year, around 70% of surveyed global institutional investors planned to buy cryptoassets eventually.
Also, more than 50% of the 1,100 investors surveyed by Coalition Greenwich on behalf of Fidelity Digital Assets, a crypto-focused arm...
Steam Deck Pre-Orders Start Off Shaky
16.7.2021
Today, Valve began taking paid reservations for its recently announced Steam Deck, a powerful portable PC that’s invited comparisons to the Nintendo Switch. But right after pre-orders went live, Steam collapsed into server errors and other frustrating hiccups. Read more
Using the Specificity of :where() as a CSS Reset
12.7.2021
I don’t know about you, but I write these three declarations many times in my CSS:
ul {
padding: 0;
margin: 0;
list-style-type: none;
}
You might yell at me and say I can just put those in my CSS …
The post Using the Specificity of :where() as a CSS Reset appeared first on CSS-Tricks....