Search
Consistent Backends and UX: What Can Go Wrong?
12.3.2020
Article Series
Why should you care?
What can go wrong?
What are the barriers to adoption? (Coming soon)
How do new algorithms help? (Coming soon)
In the previous article, we explained what strong (vs. eventual) consistency is. This article is the second part of a series where we explain how...
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...
Lightning-Fast New Bitcoin.com Wallet Proves Popular With Over 10 Million Wallets Created
11.3.2020
The Bitcoin.com Wallet app has reached almost 10.5 million wallets created across several million app downloads. This milestone follows last month’s release of the new app, which most notably included a redesigned, user-friendly interface along with the lightning-fast Instant Pay feature...
How to Make a Line Chart With CSS
11.3.2020
Line,  bar, and pie charts are the bread and butter of dashboards and are the basic components of any data visualization toolkit. Sure, you can use SVG or a JavaScript chart library like Chart.js or a complex tool like D3 to create those charts, but what if you don't want to load yet another...
Sass !default and themeable design systems
11.3.2020
This is a great blog post from Brad Frost where he walks us through an interesting example. Let’s say we’re making a theme and we have some Sass like this:
.c-text-input {
background-color: $form-background-color;
padding: 10px
}
If the $form-background-color variable isn’t defined then...
Fluid Width Video
11.3.2020
IN A WORLD of responsive and fluid layouts on the web, ONE MEDIA TYPE stands in the way of perfect harmony: video. There are lots of ways in which video can be displayed on your site. You might be self-hosting the video and presenting it via the HTML5 <video tag. You might...
Global Investments Into Indian Crypto Sector Surge After Supreme Court Lifts Ban
11.3.2020
India has become increasingly attractive to new crypto businesses and investors from all over the world now that the supreme court has lifted the banking ban. Some companies are expanding operations into the Indian market while others are investing in the country’s crypto ecosystem. Also...
Blockchain.com Will Allow Retail Wallet Users to Borrow USD Stablecoins With Cryptocurrency
11.3.2020
The digital assets lending field seems to be heating up with Blockchain.com starting to offer lending directly to retail consumers globally. Borrowed USD stablecoins can be used by crypto traders to fund their next trades and thus increase the leverage of their holdings. Also Read: Blockchain.com...
Block Links Are a Pain (and Maybe Just a Bad Idea)
10.3.2020
As we noted in our complete guide, you can put an <a href=""> link around whatever chunks of HTML you like. Let's call that a "block link." Like you are wanting to link up an entire "Card" of content because it makes a big clickable target.
<a href="/article/"<!-- display: block;...
Considerations When Choosing Fonts for a Multilingual Website
10.3.2020
As a front-end developer working for clients all over the world, I've always struggled to deal with multilingual websites — especially cases where both right-to-left (RTL) and left-to-right (LTR) are used. That said, I’ve learned a few things along the...
Make Yourself a Little API With Netlify Functions
10.3.2020
Here's an example of a nice little use case for cloud functions. Glitch has this great package of friendly words. Say you wanted to randomly generate "happy-elephant" or "walking-tree", and you need to do that on your website in JavaScript. Well, this package is pretty big (~200 KB), necessarily...
US Lawmaker Introduces Crypto-Currency Act of 2020 While Under Coronavirus Quarantine
10.3.2020
A U.S. congressman from Arizona has introduced the Cryptocurrency Act of 2020 while under coronavirus quarantine. The bill clarifies which federal agencies regulate which type of crypto assets. “It’s crucial that America remains the global leader in cryptocurrency,” the lawmaker...
Negative Margins
9.3.2020
PPK digs into the subject, which he found woefully undercovered in web tech documentation. Our entry doesn't mention them at all, which I'll aim to fix.
Agree on this situation:
This is by far the most common use case for negative margins. You give a container a padding so that its contents have...
I Pressed ⌘B. You Wouldn’t Believe What Happened Next
9.3.2020
This talk by Marcin Wichary is — beyond both enthusiastic and outstanding — all about the complexity of UI design, typography, and the lengths his team at Figma has gone to make sure that doing something as simple as selecting a font from a dropdown does what you expect it to.
I’d recommend this...
Newly-Launched Bitcoin.Com Lottery Unlocks Global Lotteries Through Cryptocurrency Payments
9.3.2020
Following the recent partnership between Bitcoin.com and Bravio Technologies Limited, the Bitcoin.com Lottery platform has officially launched. It lets users play the most popular global lotteries from any location. Tickets can be purchased using either bitcoin cash (BCH) or bitcoin core (BTC)...
Adventures in CSS Semi-Transparency Land
9.3.2020
Recently, I was asked to make some tweaks to a landing page and, among the things I found in the code, there were two semitransparent overlays — both with the same RGB values for the background-color — on top of an image. Something like this:
<img src='myImage.jpg'/>
<div...
Use a:visited in your CSS stylesheet
9.3.2020
Evert Pot:
Unfortunately, when setting a new color (e.g. a { color: #44F }) the ‘purple visited link’ feature also gets disabled. I think this is a shame, as there’s so many instances where you’re going through a list of links and want to see what you’ve seen before.
The 2 examples I ran into...
6 Crypto Websites Blocked by Russia’s Media Watchdog, Including Major News Outlet
9.3.2020
In what seems to be another episode in a long-running campaign, the Russian telecom regulator has restricted access to at least six websites posting content related to cryptocurrencies. Тhe forum section of Bits.media, a leading crypto news outlet, is among the internet pages that have been...
Geoff’s Redesign Posts
9.3.2020
I love it when people redesign "in the open" and write about it. I'd just like to shout out to our own Geoff who has been doing this for 3 months now. He started in late December last year. He's been sharing stuff like his dev tooling choices, considering performance, considering accessibility...
Google Fonts + Variable Fonts
7.3.2020
I see Google Fonts rolled out a new design (Tweet). Compared to the last big redesign, this feels much more iterative. I can barely tell the difference really, except it's blue instead of red and this one pretty rad checkbox: Show only variable fonts.
An option to only show variable fonts is...