Search
Triple-Entry Bookkeeping: How Satoshi Nakamoto Solved the Byzantine Generals’ Problem
3.8.2020
In 2008, Satoshi Nakamoto essentially solved the infamous computational issue called the “Byzantine generals’ problem” or the “Byzantine Fault.” Throughout the history of man, people used ledgers to record economic transactions and property ownership. A ledger is often...
Tokenized Real Estate Hasn’t Lived Up to the Hype: Property Researcher
31.7.2020
Despite early hype, real estate tokenization has failed to garner significant momentum, leading some to question its future viability
CSS Vocabulary
27.7.2020
This is a neat interactive page by Ville V. Vanninen to reference the names of things in the CSS syntax. I feel like the easy ones to remember are “selector,” “property,” and “value,” but even as a person who writes about CSS a lot, I forget some of the others....
J. A. McDonald: The Longest Running Case of Mass Hysteria
26.7.2020
It is a mass delusion on an epic scale, beyond that of any known mental illness or fallacious belief. It is neither genetic nor viral nor bacterial, yet it has spread to each corner of the world and overtaken it. Statism, the belief in a forceful and coercive government, is an affliction that...
China’s Supreme Court Recommends Increasing Crypto Property Rights Protection
22.7.2020
The supreme court of China has recommended increasing the legal protection of property rights, including digital currency ownership rights. The recommendations also focus on solving issues such as “the use of public power to infringe private property rights, illegal seizures, and freezing...
Chinese Supreme Court Favors Strengthening Cryptocurrency Property Rights
22.7.2020
China’s Supreme Court has called to strengthen property laws pertaining to digital currency, network virtual property and data
Russia to Treat Crypto as a Taxable Property
21.7.2020
Russia changed its draft bill regulating crypto and digital assets. You won’t go to jail for facilitating crypto deals in the country – at least, not just yet
Backdrop Filter effect with CSS
16.7.2020
I love these little posts where some tricky-looking design is solved by a single line of CSS using a little-known property. In this case, the design is a frosted glass effect and the CSS property is backdrop-filter.
The approach? Easy peasy:
.container {
backdrop-filter: blur(10px);
}
The...
Chinese Courts Use Blockchain for Property E-Sealing
6.7.2020
Courts in China are rolling out blockchain-based electronic seals to protect property from being disturbed or damaged
Law Decoded: Independence Day Sees Challenges to Privacy, Property and Security, June 26–July 3
3.7.2020
Bitcoin isn’t property under new Russian ruling while authorities in the U.S. and the EU challenge encrypted networks in this week’s Law Decoded
Russian Courts Can’t Agree on Whether Crypto is Property
3.7.2020
A Russian court convicted two men for extortion, but did not force them to return around $100,000 in crypto since they have no legal definition as property. Other courts have taken a different view
Russian Court: Theft Of 100 BTC Isn’t A Crime Because Bitcoin Isn’t Property
1.7.2020
A Russian court turned down a request from a victim of a 100 Bitcoin theft seeking restitution, with the court arguing that cryptocurrencies have no legal status
US Real Estate Market Crisis: 4.3 Million Mortgage Delinquencies, Commercial Properties Sink in Value
27.6.2020
The U.S. economy continues to look bleak as the American citizens and small businesses nationwide struggle to keep up with the government’s rules toward Covid-19 guidelines. In just 13 weeks, over 45 million Americans filed for unemployment benefits and many citizens cannot pay their...
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...
Using Custom Property “Stacks” to Tame the Cascade
22.6.2020
Since the inception of CSS in 1994, the cascade and inheritance have defined how we design on the web. Both are powerful features but, as authors, we’ve had very little control over how they interact. Selector specificity and source order provide some minimal “layering” control...
How to Reverse CSS Custom Counters
11.6.2020
I needed a numbered list of blog posts to be listed with the last/high first and going down from there. Like this:
5. Post Title
4. Post Title
3. Post Title
2. Post Title
1. Post Title
But the above is just text. I wanted to do this with a semantic <ol> element.
The easy way
This can...
A Vision for Digital Property Rights, Feat. Nic Carter
10.6.2020
Most people today look at social platforms like any other private company, but what if we saw them as alternative jurisdictions with a new set of property rights?
Your Property Rights Should Extend to Social Media
9.6.2020
It's time for internet users to assert their rights as content owners, rather than giving up free material to platforms like Google and Facebook, says our columnist
How to Get All Custom Properties on a Page in JavaScript
8.6.2020
We can use JavaScript to get the value of a CSS custom property. Robin wrote up a detailed explanation about this in Get a CSS Custom Property Value with JavaScript. To review, let’s say we’ve declared a single custom property on the HTML element:
html {
--color-accent: #00eb9b;
}
In JavaScript...
Understand why CSS has no effect with the Inactive CSS rules indicator in Firefox DevTools
5.6.2020
It’s useful when DevTools tells you that a declaration is invalid. For example, colr: red; isn’t valid because colr isn’t a valid property. Likewise color: rd; isn’t valid because rd isn’t a valid value. For the most part, a browser’s DevTools shows...