Search
People Problems
16.10.2020
Just the other day, Jeremy Keith wrote that problems with performance work isn’t only a matter of optimization and fixing code, but also tackling people problems:
It struck me that there’s a continuum of performance challenges. On one end of the continuum, you’ve got technical issues. These can...
Almost 1M Ether would have been burnt in past year if fee proposal approved
16.10.2020
The long awaited EIP-1559 would have seen almost 1 million ETH burnt in the last 365 days if it had been implemented, but miners are yet to get on board
Full Bleed
15.10.2020
We’ve covered techniques before for when you want a full-width element within a constrained-width column, like an edge-to-edge image within a narrower column of text. There are loads of techniques.
Perhaps my favorite is this little utility class:
.full-width {
width: 100vw;
position:...
Block.one Debuts Big-Business Version of EOSIO Blockchain
15.10.2020
Block.one has released “EOSIO for Business,” an enterprise-focused version of its software
Another ‘Sleeping Bitcoin’ Block Reward from 2010 Was Caught Waking Up After Ten Years
14.10.2020
Another 2010 block reward was spent on Wednesday morning (ET) adding to the great number of ‘Satoshi era’ or so-called ‘sleeping bitcoins’ waking up in 2020. The block reward with 50 bitcoins was created on November 11, 2010, and transferred in block 652,669 after ten years....
Netlify Edge Handlers
13.10.2020
Some very cool news from Netlify: Edge Handlers are in Early Access (request it here). I think these couple of lines of code do a great job in explaining what an Edge Handler is:
export function onRequest(event) {
console.log(`Incoming request for ${event.request.url}`);
...
G7 will block Libra launch until regulations in place
12.10.2020
“No global stablecoin project should begin operation until it adequately addresses relevant legal, regulatory, and oversight requirements.”
$12M in ‘Satoshi Era’ Bitcoins Move: 21 Block Rewards from 2010 Spent After a Decade of Slumber
11.10.2020
On early Sunday morning around 1:38:02 a.m. (New York time), approximately 20 blocks with coinbase rewards from 2010 were spent in one block. 1,000 BTC was then consolidated into a single address before moving again. The massive movement of the decade-old ‘sleeping’ bitcoins was caught...
Google Cloud Does Not Intend to Take EOS Rewards as a Block Producer
7.10.2020
Following news of yesterday's partnership with Block.one, Google Cloud says it is not getting into EOS for the tokens
On the Web Share API
6.10.2020
I think the Web Share API is very cool (here’s our coverage). In a nutshell, it taps into the native sharing features on whatever platform you’re on, if that platform supports it. So essentially…
I like this:
Web Share API activated on iOS
A heck of a lot more than these...
Styling Complex Labels
5.10.2020
Danielle Romo covers the HTML pattern you need when you have a wordy <label> with fancy styling for an <input type="radio">.
The trick? The ol’ <span class="hidden-visually"> that contains the label that you want to be read, and a <span aria-hidden="true"> with...
$8M Worth of ‘Sleeping’ Bitcoin Rewards from 2010 Moved the Day Before ‘Black Thursday’
4.10.2020
Over a half a million dollars worth of bitcoin from a May 2010 coinbase reward was transferred to Bitfinex on October 1. A parser recorded the old coins being spent and since mid-February 2020, roughly 33 so-called ‘sleeping bitcoin addresses’ from ten years ago have been spent to-date....
There’s a good reason why experienced devs say “it depends” so often
2.10.2020
I feel like Jerod Santo really understood what I was trying to say in Weaved Webs, when I was trying to cover the emerging WordPress (“versus”) Jamstack conversation.
If you asked El Duderino if you should go Jamstack he’d probably tell you, “It’s a complicated case. Lotta ins. Lotta...
Dash adjusts block reward percentage to improve the economics of its network
1.10.2020
This and other changes come as part of the protocol’s recent mainnet upgrade
POW
30.9.2020
As a connoisseur of web trickery, this is a must share:
POW stands for Packaged Offline/online Webpage. It turns out the png format includes ways to save metadata alongside the image file. A powfile has a metadata entry that contains a zip file that contains a full website.
So a PNG file...
Norwegian Block Exchange To Tokenize Krone Before Going Global
30.9.2020
At this stage, with planned tokenization of both gold and the local currency Norwegian krone (NOK) in the works, Norwegian Block Exchange (NBX) is set to prioritize regional growth over global expansion, NBX Co-Founder and Managing Director Stig Kjos-Mathisen told Cryptonews.com.
“The next year...
Russian Policy Chief: Crypto Impossible To Regulate, Let's Block It
25.9.2020
The man charged with overseeing Russia’s long-awaited crypto regulations said that new legal amendments will be ready “in about a month” – but hinted that Moscow may now seek to “block” cryptocurrency-related activity rather than police it.
Speaking to media outlet RBC, Anatoly Aksakov, the head...
Leading Auction House Christie’s Listing Bitcoin Art for the First Time
24.9.2020
The world’s largest auction house, Christie’s, will be presenting Bitcoin artwork for the first time. Block 21 of “Portraits of a Mind,” an art project showcasing the original Bitcoin code by Satoshi Nakamoto, will include a painting and a unique digital non-fungible token....
Web Technologies and Syntax
24.9.2020
JavaScript has a (newish) feature called optional chaining. Say I have code like:
const name = Data.person.name;
If person happens to not exist on Data, I’m going to get a hard, show-stopping error. With optional chaining, I can write:
const name = Data.person?.name;
Now if person...
Using Markdown and Localization in the WordPress Block Editor
23.9.2020
If we need to show documentation to the user directly in the WordPress editor, what is the best way to do it?
Since the block editor is based on React, we may be tempted to use React components and HTML code for the documentation. That is the approach I followed in my previous article, which...