Search
a11y is web accessibility
29.8.2020
Eric Bailey eviscerates the notion that the term “a11y” isn’t accessible. It’s a hot take that I’ve had myself, embarrassingly enough.
I never see people asking why WWI is written out the way it is, either. Won’t people confuse that with the first Wonder Woman movie?...
Deeper DX
27.8.2020
Shawn Wang thinks there are deeper, perhaps more uncomfortable, places to go with developer experience (DX) beyond the surface-level stuff that we recently covered. Sure, sure, documentation, CLIs, good demos. But there are much harder questions to answer that are part of the real DX. Shawn lists...
Hollywood Royalty Flexes Crypto-Art Goals: Ashton Kutcher Auctions NFT Digital Art for ETH
21.8.2020
Actor and venture capitalist Ashton Kutcher’s first attempt at digital art, an awful piece titled “The Eye of the Beholder”, is auctioning at Cryptograph. At the time of writing, the highest bid stood at 13.26 ethereum, or about $5,400, with a day to go before the sale ends....
To grid or not to grid
20.8.2020
Sarah Higley does accessibility work and finds that “tables and grids are over-represented in accessibility bugs.”
The drum has been banged a million times: don’t use a <table> for layout. But what goes around comes around. What’s the the #1 item in a list...
Market Report: Merculet Token Price Doubles in 7 Hours, Algo up More Than 500% Since March
14.8.2020
The merculet token gained 160% from $0.00068 to $0.0011 in just 7 hours of trading on August 14. The price jump makes the token biggest gainer in 24 hours according to markets.Bitcoin.com. Despite the price surge, merculet had trading volumes of just $112,000. At the time of writing...
Writing Bitcoin Smart Contracts Is About to Get Easier With New Coding Language
13.8.2020
Bitcoin smart contracts are tricky. Minsc, a new language created by Bitcoin developer Nadav Ivgi, is making them easier to write
Chainlink Competitor Band Token Grows 300% in 7 Days Setting New ATH
11.8.2020
BAND, the native token of the Band Protocol, has grown by more 300% in just seven days. At the at time of writing, the token traded at $14.50 against the August 3 trading price of $3.86. On August 10, the token also touched a new high of $17.78 while the 24 hours traded volumes were […]
The...
Chainlink Price Jumped More Than 45% in 48 Hours and 440% in Twelve Months
10.8.2020
Chainlink’s token surged more than 45% from $9.53 to $14.09 between Friday and Sunday data shows. The surge saw chainlink’s (LINK) market capitalization shooting to $5.12 billion which makes it the sixth most capitalized token, just ahead of cardano (ADA). At the time of writing...
$5.6 Million Double Spent: ETC Team Finally Acknowledges the 51% Attack on Network
6.8.2020
The Ethereum Classic (ETC) blockchain network lost $5.6 million to one miner following a 51% attack initially thought to be a chain split. During the attack, the offending miner managed to double-spend 807,260 ETC ($5.6 million) after spending 17.5 BTC or $200,000 (at time of writing) to acquire...
Making Sense of react-spring
4.8.2020
Animation is one of the trickier things to get right with React. In this post, I’ll try to provide the introduction to react-spring I wish I had when I first started out, then dive into some interesting use cases. While react-spring isn’t the only animation library for React, it’s one of the more...
Bakkt Futures Volume Hits $122 million, as Bitcoin Reached New 11-Month High
29.7.2020
Volumes on bitcoin futures offered by Bakkt set a record high on July 27, with 11,500 contracts traded on the institutional exchange. Altogether, the contracts are worth about $126 million, at the time of writing. Each contract is equivalent to one bitcoin (BTC). Total open interest –...
Market Update: Crypto Cap Nears $300 Billion, BTC Hits $10K, ETH Rallies Hard
26.7.2020
The digital currency economy is steadily approaching a $300 billion market capitalization, as a great number of coins have been seeing decent gains. Bitcoin touched a high of $10,135 on July 26, during the early morning trading sessions, but ethereum is outpacing the top crypto measured by market...
Chainlink Token Price Surges, Briefly Breaks Into the Top Ten by Market Cap
14.7.2020
The price of Link, the native token of the Chainlink network, soared in 48 hours gaining some 40% in that period. This rally saw the token briefly breaking into the crypto market capitalization top ten. At the time of writing, the token LINK had a market capitalization of nearly $2.6 billion easily...
My Long Journey to a Decoupled WordPress Gatsby Site
13.7.2020
As a professional research biologist, my playground used to be science laboratories filled with microscopes, petri dishes, and biology tools. Curiosity leads many scientists on their journey to discoveries. Mine led me to web design. I used to try learning HTML on my lab desktop while centrifuging...
How to Make a List Component with Emotion
8.7.2020
I’ve been doing a bit of refactoring this week at Sentry and I noticed that we didn’t have a generic List component that we could use across projects and features. So, I started one, but here’s the rub: we style things at Sentry using Emotion, which I have only passing experience with and...
Building Serverless GraphQL API in Node with Express and Netlify
6.7.2020
I’ve always wanted to build an API, but was scared away by just how complicated things looked. I’d read a lot of tutorials that start with “first, install this library and this library and this library” without explaining why that was important. I’m kind of a Luddite when it comes to these...
Quick Tips for High Contrast Mode
27.6.2020
Sarah Higley has some CSS tricks up her sleeve for dealing with High Contrast Mode on Windows, which I learned is referred to as WHCM.
Here’s the first trick:
[…] if the default CSS outline property doesn’t give you the visual effect you want [in WHCM] for focus states...
Analyzing Notion app performance
8.6.2020
Here’s a fantastic case study where Ivan Akulov looks at the rather popular writing app Notion and how the team might improve the performance in a variety of ways; through code splitting, removing unused vendor code, module concatenation, and deferring JavaScript execution. Not so long ago, we made...
How to Convert a Date String into a Human-Readable Format
25.5.2020
I’ll be the first to admit that I’m writing this article, in part, because it’s something I look up often and want to be able to find it next time. Formatting a date string that you get from an API in JavaScript can take many shapes — anything from loading all of Moment.js to have...
Avoid Heavy Babel Transformations by (Sometimes) Not Writing Modern JavaScript
20.5.2020
It’s hard to imagine writing production-ready JavaScript without a tool like Babel. It’s been an undisputed game-changer in making modern code accessible to a wide range of users. With this challenge largely out of the way, there’s not much holding us back from really leaning into...