Search
RSS Stuff
31.3.2020
Laura Kalbag wrote How to read RSS in 2020. This would be a nice place to send someone curious about RSS: what it is, what it’s for, and how you can start using it as a reader. I like this callout, too:
Sometimes the content is just an excerpt, encouraging you to read the rest of the content...
Bitcoin Mining Roundup: BTC Regains 100 Exahash, Miners Close Shop, Pre-Halving Shake-Up
30.3.2020
In 44 days, BTC miners will face the third reward halving as the block subsidy will soon shrink from 12.5 to 6.25 coins per block. Following the market carnage in mid-March, BTC’s hashrate plummeted 44% to a 2020 low of 75 exahash per second (EH/s). Since then the hashrate has climbed back...
How They Fit Together: Transform, Translate, Rotate, Scale, and Offset
30.3.2020
Firefox 72 was first out of the gate with "independent transforms." That is, instead of having to combine transforms together, like:
.el {
transform: rotate(10deg) scale(0.95) translate(10px, 10px);
}
...we can do:
.el {
rotate: 10deg;
scale: 0.95;
translate: 10px 10px;
}
That's extremely...
Block.one Hires Team Behind Prominent Block Producer EOS New York
30.3.2020
The team behind the high-profile EOS New York Block Producer has been hired by EOSIO developer Block.one
DeFi Cannibalizes Ethereum Block Space
29.3.2020
New data suggests that a ‘flippening’ in which DeFi transactions overtake ETH transfers may be soon on the horizon for Ethereum
Creating a Pencil Effect in SVG
28.3.2020
Scott Turner, who has an entire blog "Exploring procedural generation and display of fantasy maps", gets into why vector graphics seems on these surface why it would be bad for the look of a pencil stroke:
Something like this pencil stroke would require many tens of thousands of different...
Emergency Website Kit
27.3.2020
Here’s an outstanding idea from Max Böck. He’s created a boilerplate project for building websites that fit within a single HTTP request. This is extremely important for websites that contain critical information for public safety. As Max writes:
In cases of emergency, many organizations need...
Block.one Invest $150 Million Into Voice, But Privacy Concerns Linger
27.3.2020
The social media platform is currently in closed beta, and requires all users to comprehensively verify their identity
Norwegian Block Exchange Plans Expansion Despite Norwegian Air Problems
27.3.2020
With more and more airlines around the world grounding their flights due to border closures and travel restrictions, one recently launched airline-related crypto exchange may be about to feel more direct consequences as well.
Closely affiliated with the low-cost air carrier Norwegian Air Shuttle...
Maintaining Performance
27.3.2020
Real talk from Dave:
I, Dave Rupert, a person who cares about web performance, a person who reads web performance blogs, a person who spends lots of hours trying to keep up on best practices, a person who co-hosts a weekly podcast about making websites and speak with web performance professionals…...
Block.one Absorbs Team Behind Now-Defunct Block Producer EOS New York
27.3.2020
EOS creator Block.one has acquired the team behind once-prominent block producer EOS New York, which has now entirely ceased operations
EOS to Become More ‘Community-Driven’ as Block.One Seeks to Use Dfuse’s Open-Source APIs
27.3.2020
Block.One appears to be taking a more active stance in the EOS network
Get Static
26.3.2020
In this piece, Eric Meyer argues that performance is more important than ever right now — especially for websites that contain critical information for the public:
If you are in charge of a web site that provides even slightly important information, or important services, it’s time to...
ETH 2.0 Audit Highlights Risks to Block Proposers and P2P Protocol
26.3.2020
While noting that the code is “very well thought out,” Least Authority identified risks to block proposers and concerns regarding ETH 2.0’s P2P networking protocol
Did You Know the Ordered List Element Has Start and Reversed Attributes?
24.3.2020
I sure didn't! Tomek Sułkowsi shows how we can reverse the numbering of ordered lists with a simple HTML attribute:
<ol reversed<liApple</li<liBanana</li<liPear</li</ol
CodePen Embed Fallback
And the start attribute can be added to begin the list at a number other...
Performance Links
24.3.2020
I've had a number of browser tabs open to articles all related to web performance and gosh darn it if blogging them is a way for me get some closure. They are all good!
Manuel Matuzovic, Why 543 KB keep me up at night:
Yes, I know, it depends. 543 KB aren't always bad, but on that specific page...
Crypto Mining Crunch Time – Bitcoin Halving Less Than 50 Days Away While Global Economy Shudders
24.3.2020
On or around May 13, the BTC network will see a block reward reduction as miners will go from getting 12.5 coins per block to 6.25 coins following the halving. The last time the protocol’s block reward halved was on July 9, 2016, and the global economy looked a whole lot different back then....
CSS :nth-of-class selector
23.3.2020
That's not a thing.
But it kinda is!
Bram covers how frustrating .bar:nth-child(2) is. It's not "select the second element of class .bar." It's "select the second element if it also has the class .bar." The good news? There is a real selector that does the former:
:nth-child(2 of .bar) { }
Safari...
CSS Can Influence Screenreaders
23.3.2020
Ben Myers covers some clear examples of where CSS totally changes what some screen readers announce. For example, some screenreader will see text-transform: uppercase; on a button label that says "Add" and read it like an abbreviation, "A.D.D."
These cases of CSS messing with our screenreader...
Client-Side Image Editing on Mobile
20.3.2020
Michael Scharnagl:
Ever wanted to easily convert an image to a grayscale image on your phone? I do sometimes, and that's why I build a demo using the Web Share Target API to achieve exactly that.
For this I used the Service Worker way to handle the data. Once the data is received on the client,...