Search
Crypto Experts Give Their Top Predictions for 2020
19.12.2019
In an industry built around digital scarcity, opinions are in plentiful supply. Everyone’s got one, and they’d love to share it with the rest of the cryptosphere. As the decade draws to a close and another prepares to launch, it’s the perfect time to consider what 2020 has...
Two Lessons I Learned From Making React Components
19.12.2019
Here’s a couple of lessons I’ve learned about how not to build React components. These are things I've come across over the past couple of months and thought they might be of interest to you if you’re working on a design system, especially one with a bunch of legacy technical decisions and a lot...
The Making of a “Special Series” on a WordPress Site
18.12.2019
We just ran a fancy article series here on CSS-Tricks with a bunch of different articles all answering the same question. By fancy, I mean two things:
The articles had a specially-designed template just for them. (Example)
The series has a specially-designed landing page.
One of the reasons...
'Craig Wright Is Not the Victim Here' as He Tries to Dodge Sanctions
18.12.2019
Craig Wright. Source: a video screenshot, Youtybe, CoinGeek
Craig Wright, the controversial Australian computer scientist and supporter of Bitcoin SV (BSV), 'is not the victim here,' claims the latest court filing from David Kleiman’s estate, as Wright is trying to dodge the sanctions order which...
The Order of CSS Classes in HTML Doesn’t Matter
17.12.2019
That’s right! And I can prove it, too. Let’s look at some CSS first:
.a {
color: red;
}
.b {
color: blue;
}
And now let’s look at some markup:
<div class="a b">Here’s some text</div>
The text is going to be blue because .b is defined last in the CSS, right? But what if we...
Now You See It
16.12.2019
I recently accepted a teaching position at a local college here in SoCal where I'll be spouting off whatever I know (or more likely don't know!) about HTML and CSS. It's suffice to say I was all ears (well, actually eyes) when Rachel Andrew recently published a post on teaching CSS.
The display...
Is Bitcoin Now Bullish or Bearish at $7K? Here’s the Scorecard
16.12.2019
Is Bitcoin now bullish or bearish headed into 2020? Here’s how BTC is shaping up exactly a year after its $3.2K bottom was confirmed
Here’s What Happens When You Use Lightning Network for the First Time
16.12.2019
Do you remember receiving your first bitcoin? Seeing those satoshis arrive in your wallet is a magical, almost spiritual, experience. In that moment, the most beautiful thing about bitcoin is not its censorship resistance or pseudonymity: it’s that it works at the first time of asking....
Iran, Hong Kong, India: Failed Protests Point to Need for Crypto-Anarchy ‘Second Realms’
13.12.2019
What is the second realm? It’s both an abstract and concrete “place” parallel to here, where temporary autonomous zones (TAZ) provide a chance to escape the burning surveillance spotlight of the state and brutal law enforcement culture, and allow for at least temporary exercises...
Hold Tight, Here Come the Blockchain Wars
12.12.2019
Prepare for a shakeout of blockchain projects in 2020 and the start of network-on-network conflict
Here’s a New Banking Tool for Vetting Crypto Exchanges
11.12.2019
The blockchain forensics firm is now offering banks a product that aims to provide up-to-date risk profiles of more than 200 of the largest crypto exchanges around the world
Making a Better Custom Select Element
11.12.2019
We just covered The Current State of Styling Selects in 2019, but we didn't get nearly as far and fancy as Julie Grundy gets here. There is a decent chunk of JavaScript that powers it, so I'm still very much eyeballing browsers' recent interest in giving us more powerful selects in (presumably)...
CSS Architecture for Modern JavaScript Applications
6.12.2019
There is a lot to like from Mike Riethmuller here:
The title. When you're building a website from JavaScript-powered components anyway, that is a moment to talk about how to do styling, because it opens some doors to JavaScript-powered styles that you probably wouldn't otherwise choose.
The...
Auto Layout lands in Figma
5.12.2019
Here’s a fresh update to my favorite design tool that is thoroughly exciting: Auto layout! That means we can make frames that resize based on the size of the content within it. That's particularly useful for buttons in a design system where you want to drop a button on the page and then keep...
The New Klim Type Website is Impossibly Lovely
4.12.2019
I’ve spent the last hour hunched over the new Klim Type foundry website with my arms outstretched as if it was a fire in a very dark cave. Klim Type makes and sells wondrous fonts — like Tiempos, and National 2 or Pitch — and this fresh redesign now showcases them in all their glory. Here’s...
The Digitex Futures Public Beta is Almost Here
29.11.2019
The Digitex Futures public beta is almost here, and (if the reactions from the wider public are as positive as the closed testers), DGTX, the exchange’s native token, will be one to watch in the coming months. The zero-fee futures trading platform whose ICO sold out in 17 minutes has often bucked...
Here’s Where to Spend Crypto Online This Black Friday
29.11.2019
Looking to spend some of your hard-earned crypto this Black Friday? Cointelegraph has you covered!
Black Friday Rally to $170 for Ether? — Here’s What Must Happen
29.11.2019
Is Ether having its own Black Friday event before a rebound to $170?
Happy Thanksgiving, Mr. Robot! Here's Some Bitcoin For You
28.11.2019
If it’s crypto-related, the crypto fans will notice it. Bitcoiners saw a Bitcoin (BTC) address in popular TV series Mr. Robot and, in the spirit of Thanksgiving, have actually sent some of the world’s number one cryptocurrency to it.
For those of you who haven’t seen it yet, Mr. Robbot is a...
The Power (and Fun) of Scope with CSS Custom Properties
27.11.2019
You’re probably already at least a little familiar with CSS variables. If not, here’s a two-second overview: they are really called custom properties, you set them in declaration blocks like --size: 1em and use them as values like font-size: var(--size);, they differ from preprocessor variables...