Search
How to delete all node_modules directories from your computer
8.7.2020
Nice tip from Chris Ferdinandi:
My node_modules directories contained 50mb of stuff on the small side, and over 200mb of files in some cases. Over a few dozen projects, that really adds up!
Two dozen projects with 200 MB worth of node_modules? That’s nearly 5 GB of space for...
Renters Threaten US Real Estate Market, 20 Million Americans Face Eviction
8.7.2020
The aftermath of the coronavirus-provoked business shutdowns in the United States caused a number of market observers to focus on the U.S. real estate and rental markets. As the federal moratorium on evictions reaches its expiry, a recent Aspen Institute report reveals that 20 million renters...
Styling Layout Wrappers In CSS
29.6.2020
Two things that strike me often about the web are how many ways there are to go about the same thing and how many considerations go into even the most seemingly simple things.
Working with wrapper elements is definitely on both those lists. Wrappers (or containers or whatever) are so common...
Grid for layout, flexbox for components
26.6.2020
When should we reach for CSS grid and when should we use flexbox? Rachel Andrew wrote about this very conundrum way back in 2016:
Flexbox is essentially for laying out items in a single dimension – in a row OR a column. Grid is for layout of items in two dimensions – rows AND columns.
Ahmad...
Alchemy Notify Wants to Simplify Blockchain UX With a Single Push
9.6.2020
Alchemy has built a new push notification system for blockchain developers in a bid to move the needle on mainstream-friendly crypto UX
How to Get All Custom Properties on a Page in JavaScript
8.6.2020
We can use JavaScript to get the value of a CSS custom property. Robin wrote up a detailed explanation about this in Get a CSS Custom Property Value with JavaScript. To review, let’s say we’ve declared a single custom property on the HTML element:
html {
--color-accent: #00eb9b;
}
In JavaScript...
A First Look at `aspect-ratio`
29.5.2020
Oh hey! A brand new property that affects how a box is sized! That’s a big deal. There are lots of ways already to make an aspect-ratio sized box (and I’d say this custom properties based solution is the best), but none of them are particularly intuitive and certainly not...
John McAfee Announces Privacy Coin – Airdrop Today
25.5.2020
2020 has been a turbulent year for the cryptocurrency market, but it has established the resilience of blockchain technology. Despite a single-day market plunge that battered the entire market valuation with a 50% drop, the following rapid uptick in Bitcoin price has led it to outperform...
Radio Buttons Are Like Selects; Checkboxes Are Like Multiple Selects
20.5.2020
I was reading Anna Kaley’s “Listboxes vs. Dropdown Lists” post the other day. It’s a fairly straightforward comparison between different UI implementations of selecting options. There is lots of good advice there. Classics like that you should use radio buttons (single...
Tackling Authentication With Vue Using RESTful APIs
18.5.2020
Authentication (logging in!) is a crucial part of many websites. Let’s look at how to go about it on a site using Vue, in the same way it can be done with any custom back end. Vue can’t actually do authentication all by itself, —we’ll need another service for that, so we’ll be using another service...
S2F Hopium: Report and Twitter Critics Find Flaws With Bitcoin’s Stock-to-Flow Ratio
17.5.2020
In mid-April, news.Bitcoin.com researched the popular stock-to-flow (S2F), which shows the price of a single bitcoin reaching $55K and even six figures. At the time, analysts questioned measuring bitcoin’s price in this manner and more recently, a few others have been criticizing the method...
Online Together
14.5.2020
(This is a sponsored post.)
An Event Apart: Online Together is a single-day online conference with an intense focus on digital design, UX, content, code, and more, giving you deep insights into where we are now and where things are going next.
AEA! With a brand new online version of their...
React Single File Components Are Here
13.5.2020
Shawn Wang is talking about RedwoodJS here:
… it is the first time React components are being expressed in a single file format with explicit conventions.
Which is the RedwoodJS idea of Cells. To me, it feels like a slightly cleaner version of how Apollo wants you to do it with useQuery....
Bitcoin Price Touches $10K Amid 2020’s Macroeconomic Storm and Covid-19 Fears
8.5.2020
On May 7, 2020, the price of a single bitcoin crossed $10,000 per unit in USD value as the network only has four days until the halving, otherwise known as the “quantitative hardening” by some investors. The cryptocurrency’s per annum inflation rate will drop from 3.6% to 1.8%...
Guarda Wallet – Multi-Currency, Multiplatform Wallet With a Taste for Special Features
7.5.2020
Guarda wallet has been around for almost three years – the cryptocurrency storage that started out as open-source single-currency wallets in the times of market needs has now turned into a flourishing ecosystem of products and crypto management services. Many novelties have been implemented...
A Single Chinese Region Accounts for One-Third of Global BTC Hash Rate
7.5.2020
Cambridge University has launched a ‘Bitcoin Mining Map’ that shows the distribution of hashing power worldwide as well as within China
US Treasury to ‘Borrow’ $3 Trillion for a Single Quarter – Anticipates Taking Billions More for Q3
5.5.2020
On Monday, the United States Department of the Treasury announced it will be “borrowing” a record $3 trillion to help support the American economy. The move comes after the Federal Reserve dished out over $6 trillion to private dealers before the first U.S. Covid-19 death, and the $1.5...
No-Comma Color Functions in CSS
4.5.2020
There have been a couple of viral tweets about this lately, one from Adam Argyle and one from Mathias Bynes. This is a nice change that makes CSS a bit more clear. Before, every single color function actually needs two functions, one for transparency and one without, this eliminates that need...
12 Months of Onchain Data Shows Bitcoin Whales Obtained Hundreds of BTC from Small Fish
2.5.2020
According to recent data, crypto participants known as ‘bitcoin whales’ have been steadily accumulating bitcoins, and not selling since the ‘Black Thursday’ market carnage on March 12, 2020. Onchain data and blockchain analysis firms indicate that the number of bitcoin...
Enable Gatsby Incremental Builds on Netlify
1.5.2020
The concept of an “incremental build” is that, when using some kind of generator that builds all the files that make for a website, rather than rebuilding 100% of those files every single time, it only changes the files that need to be changed since the last build. Seems like...