Search
Tailwind versus BEM
25.11.2020
Some really refreshing technological comparison writing from Eric Bailey. Like, ya know, everything in life, we don’t have to hate or love everything. Baby bear thinking, I like to say. There are benefits and drawbacks. Every single bullet point here is well-considered and valid. I really...
BIS Paper Says There’s Potential to Embed Regulation Into Stablecoin Systems
25.11.2020
The need to regulate global stablecoins like Libra doesn't mean authorities can't embrace innovation, according to according to a BIS working paper
Ethereum 2.0 Deposit Threshold Met: Proof-of-Stake ‘Beacon’ Chain Starts in 7 Days
24.11.2020
The Ethereum network’s ETH 2.0 contract has crossed the threshold needed to initiate the upcoming upgrade. Currently, there’s more 694,368 ether worth over $422 million resting in the contract, as developers hope the proof-of-stake launch will begin on December 1. At the end of...
Second Stimulus Checks: New Proposal Taps Unused Fed Funds, Lawmakers Call for Relief Now
23.11.2020
Americans are anxiously waiting to hear if they will receive a second round of stimulus checks as many are suffering due to the coronavirus-led economic crisis. Treasury Secretary Steven Mnuchin has a new proposal to immediately provide relief aid, while Nancy Pelosi has been discussing stimulus...
Exploits and Flash Loans Are Just the Beginning, Defi Economy Is Less Private Than People Think
22.11.2020
Decentralized finance otherwise known as defi has climbed significantly in value this year, as the total value locked (TVL) in defi today is over $14 billion. Meanwhile, numerous defi platforms are getting attacked with flash loans and there are so many new defi projects, it’s hard to keep...
Silk Road Bitcoin Seizure: Analytics Firm Claims Tokens Worth Millions Still Outstanding
22.11.2020
Analytics firm Coinfirm says the US Department of Justice (DOJ)’s seizure of digital assets associated with the now-defunct Silk Road left behind tokens worth millions of dollars. According to Coinfirm, there are still valuable balances held on forked addresses originating from that wallet....
Bitcoin Derivatives See Record Highs, Year-End BTC Options Show 29% Chance Price Crosses $20K
20.11.2020
As the crypto economy sets its sights on half of a trillion in USD value, digital currency derivatives markets are swelling significantly. Bitcoin futures have surpassed a six-month high at $52 billion, while the crypto asset’s options markets have jumped massively too. Additionally, bitcoin...
Firefox 83
19.11.2020
There’s a small line in the changelog that is is big news for CSS:
We’ve added support for CSS Conic Gradients (bug 1632351) and (bug 1175958).
🎉🎉🎉
Conic gradients are circular, just like their radial counterpart, but place color stops...
First Mover: As Bitcoin Shoots Past $18K, There’s Comfort in the Crowded Trade
18.11.2020
"Long bitcoin" is one of the most crowded trades in markets, a new survey suggests. But signs indicate that many investors are just now getting in.
Creating WebGL Effects with CurtainsJS
18.11.2020
This article focuses adding WebGL effects to <image> and <video> elements of an already “completed” web page. While there are a few helpful resources out there on this subject (like these two), I hope to help simplify this subject by distilling the process into a...
Upptime
18.11.2020
GitHub Actions are like free computers.
Well, there is pricing, but even free plans get 2,000 minutes a month. You write configuration files for what you want these computers to do. Those configuration files go into a repo, so typically they do things specific to that repo. I’m sure that...
Copyediting with Semantic HTML
17.11.2020
Tracking changes is a quintessential copyediting feature for comparing versions of content. While we’re used to tracking changes in a word processing document, we actually have HTML elements capable of that. There are a lot of elements that we can use for this process. The main ones we’ll look...
Mixing Colors in Pure CSS
16.11.2020
Red + Blue = Purple… right?
Is there some way to express that in CSS? Well, not easily. There is a proposal draft for a color-mix function and some degree of interest from Chrome, but it doesn’t seem right around the corner. It would be nice to have native CSS color mixing, as it would give...
Pakistan’s SEC Discusses Cryptocurrency Regulation, Central Bank Confirms No Crypto Ban
15.11.2020
The Securities and Exchange Commission of Pakistan has published a paper discussing cryptocurrency regulation in the country. Meanwhile, the central bank has reportedly confirmed that there is no cryptocurrency ban. Pakistan’s Crypto Regulation in the Works The Securities and Exchange...
Parsing Markdown into an Automated Table of Contents
13.11.2020
A table of contents is a list of links that allows you to quickly jump to specific sections of content on the same page. It benefits long-form content because it shows the user a handy overview of what content there is with a convenient way to get there.
This tutorial will show you how to parse...
Report: Blockchain Price Oracle Manipulation Produces Millions in Losses, Shows No Signs of Slowing
12.11.2020
On November 9, a writer from the website samczsun.com published a report that shows a number of issues with price oracle manipulation stemming from a few blockchain applications. The researcher notes that price oracle manipulation has resulted in “over $30 [million] in losses so far.”...
My WordPress Comments Wishlist
12.11.2020
A built-in commenting system is one of the reasons people reach for WordPress (and often stay there long-term). While I do think having a comment system is compelling (and as big of a fan of building on WordPress as I am), I find the comments system on WordPress quite crusty. It needs some love!...
The Cleanest Trick for Autogrowing Textareas
11.11.2020
Earlier this year I wrote a bit about autogrowing textareas and inputs. The idea was to make a <textarea> more like a <div> so it expands in height as much as it needs to in order to contain the current value. It’s almost weird there isn’t a simple native solution...
Understanding flex-grow, flex-shrink, and flex-basis
11.11.2020
When you apply a CSS property to an element, there’s lots of things going on under the hood. For example, let’s say we have some HTML like this:
<div class="parent"<div class="child"Child</div<div class="child"Child</div<div class="child"Child</div</div
And...
ARIA in CSS
11.11.2020
Jeremey reacting to Sara’s tweet, about using [aria-*] selectors instead of classes when the styling you are applying is directly related to the ARIA state.
… this is my preferred way of hooking up CSS and JavaScript interactions. Here’s [an] old CodePen where you can see...