Search
Switzerland’s Largest Bank UBS Expects US Crypto Legislation to Take Time
14.2.2022
Switzerland’s largest bank, UBS, expects the United States Congress to take a long time to pass cryptocurrency legislation despite mounting interest in crypto investments and regulators calling for Congress to weigh in on crypto legislation. Congress Could Take a Long Time on Crypto...
Cydia Dev Discloses Ethereum L2 Bug — Optimism Attacker Could Have ‘Printed an Arbitrary Quantity of Tokens’
13.2.2022
On February 10, the well-known developer of Cydia and iOS Jailbreak, Jay Freeman, otherwise known as Saurik, published a Twitter thread about a bug he found in the Layer-2 (L2) scaling protocol known as Optimism. According to Freeman, the vulnerability, which has been patched, could have allowed...
Wells Fargo: Cryptocurrency Has Entered ‘Hyper-Adoption Phase’
13.2.2022
Financial services firm Wells Fargo says that cryptocurrencies are viable investments that have entered the “hyper-adoption” phase. “Cryptocurrencies have been following an adoption pattern similar to other new advanced technologies, such as the internet,”...
Your CSS reset needs text-size-adjust (probably)
12.2.2022
Kilian Valkhof:
[…] Mobile Safari increases the default font-size when you switch a website from portrait to landscape. On phones that is, it doesn’t do it on iPad. Safari has been doing this for a long time, as a
…
Your CSS reset needs text-size-adjust (probably) originally...
9 New React and JavaScript Links for February 2022
12.2.2022
Every now and then, I find that I’ve accumulated a bunch of links about various things I find interesting. Like React and JavaScript! Here’s a list of nine links to other articles about them that I’ve been saving up and …
9 New React and JavaScript Links for February 2022 originally...
13 Years Ago Today, Satoshi Nakamoto Published the First Forum Post Introducing Bitcoin
11.2.2022
13 years ago today, the creator of the Bitcoin network, Satoshi Nakamoto published the inventor’s first forum post on the P2P Foundation website. The forum post called “Bitcoin open source implementation of P2P currency” introduced the e-cash system to the members of...
Multi-Value CSS Properties With Optional Custom Property Values
11.2.2022
Imagine you have an element with a multi-value CSS property, such as transform: optional custom property values:
.el {
transform: translate(100px) scale(1.5) skew(5deg);
}
Now imagine you don’t always want all the transform values to be applied, so some …
Multi-Value CSS Properties With...
A Whistle-Stop Tour of 4 New CSS Color Features
11.2.2022
I was just writing in my “What’s new in since CSS3?” article about recent and possible future changes to CSS colors. It’s weirdly a lot. There are just as many or more new and upcoming ways to define colors than …
A Whistle-Stop Tour of 4 New CSS Color Features...
Developers Speculating About the Long-Distant Future: 2022
10.2.2022
This is a wonderful roundup from Jeremy, who I picture circling January 1, 2022, in red marker on a giant paper calendar back in 2008 and patiently counting the days.
See, there was a little smattering of internet drama …
Developers Speculating About the Long-Distant Future: 2022 originally...
US Inflation Jumps to 7.5%, CPI Climbs at Fastest Rate in 40 Years, Citizens See Little Wage Growth
10.2.2022
Inflation in the United States continues to rise as it climbed at its fastest rate in 40 years since February 1982. Statistics from the U.S. Labor Department’s Consumer Price Index (CPI) jumped 7.5% higher than it was a year ago. US Inflation Continues to Surge On Thursday, the U.S. Labor...
Helpful Tips for Starting a Next.js Chrome Extension
10.2.2022
I recently rewrote one of my projects — Minimal Theme for Twitter — as a Next.js Chrome extension because I wanted to use React for the pop-up. Using React would allow me to clearly separate my extension’s pop-up component and …
Helpful Tips for Starting a Next.js Chrome Extension originally...
A Chrome Extension for Cloudinary That Helps You Pluck Out Useful Media URLs From Your Library Quickly
10.2.2022
(This is a sponsored post.)
Cloudinary is a host for your digital assets like images and video. If you don’t already know them, you should, because you can build it into the asset management you almost certainly need to …
A Chrome Extension for Cloudinary That Helps You Pluck...
Ukrainian Volunteer Groups Accept Bitcoin Donations Amid Tensions With Russia, Study Finds
10.2.2022
Non-government and volunteer organizations collecting funds to support Ukrainian forces have been accepting donations in cryptocurrency, a new report has unveiled. The findings have been published amid heightened tensions with Russia, which has been accused of amassing troops at the border with...
Puerto Rican Treasury Department Aims to Tax NFT Sales
10.2.2022
The Treasury Department of Puerto Rico has published a working document that amends the current “Sales and Usage Tax” to include NFT sales. While this proposal has yet to be approved, experts believe the inclusion of NFTs in this reform brings validation to the asset class, but also...
Global Crypto and Blockchain Investments Soared in 2021, Rising 5.5X to $30 Billion
10.2.2022
A new report by one of the Big Four accounting firms, KPMG, reveals that investment in the crypto and blockchain space grew 5.5 times the previous year to more than a record $30 billion in 2021. KPMG called 2021 a “Blockbuster year for crypto and blockchain.” ‘Blockbuster Year...
SVGcode for “Live Tracing” Raster Images
9.2.2022
Say you have a bitmap graphic — like a JPG, PNG, or GIF — and you wish it was vector, like SVG. What do you do? You could trace it yourself in some kind of design software. Or tools within …
SVGcode for “Live Tracing” Raster Images originally published on CSS-Tricks. You should...
How to Make CSS Slanted Containers
9.2.2022
I was updating my portfolio and wanted to use the forward slash (/) as a visual element for the site’s main layout. I hadn’t attempted to create a slanted container in CSS before, but it seemed like it …
How to Make CSS Slanted Containers originally published on CSS-Tricks. You should...
No Motion Isn’t Always prefers-reduced-motion
8.2.2022
There is a code snippet that I see all the time when the media query prefers-reduced-motion is talked about. Here it is:
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms...
Replace JavaScript Dialogs With the New HTML Dialog Element
8.2.2022
You know how there are JavaScript dialogs for alerting, confirming, and prompting user actions? Say you want to replace JavaScript dialogs with the new HTML dialog element.
Let me explain.
I recently worked on a project with a lot of …
Replace JavaScript Dialogs With the New HTML Dialog...
Netlify Has Scheduled Functions
8.2.2022
(This is a sponsored post.)
Hey! Scheduled Functions are cool! Think of them like a CRON job. I want this code to run every Monday at 2pm. I want this code run every hour on the hour. That kind …
Netlify Has Scheduled Functions originally published on CSS-Tricks. You should get...