Search
The Current State of Styling Selects in 2019
28.10.2019
Best I could tell from the last time I compiled the most wished-for features of CSS, styling form controls was a major ask. Top 5, I'd say. And of the native form elements that people want to style, Greg Whitworth has some data that the <select> element is more requested than any other...
Is China’s New Fascination With Blockchain Really Good for Bitcoin?
27.10.2019
Blockchain development has kind of become an element of the party line in the world’s largest officially communist state. The General Secretary of the Communist Party of China, Xi Jinping, recently told a Politburo meeting that the People’s Republic has to gain an edge in the emerging...
Bidirectional Horizontal Rules in CSS
25.10.2019
Say you have a <blockquote> and the design calls for a thick border along the left side. Well, you might not necessarily mean left side, but actually mean on the side of the start of the text.
That's exactly what CSS logical properties are meant to address, and Hussein Al Hammad has a nice...
The Landscape of Cross-Platform App Development
25.10.2019
I don't track this stuff very well, but I get it. If you want a native app for Android and iOS, it sure would be nice to only have to write it once rather than two very different languages. Roughly double your reach without doubling the work. More and more of these things are reaching into desktop...
Bitcoin Has Failed But Global Stablecoins a Threat, Say BIS and G7
18.10.2019
A new report says bitcoin has failed as a means of payment or store of value, but stablecoins like Libra are a risk to financial stability
What Does Skepticism for Libra Say About Bitcoin?
17.10.2019
The potential loss of Libra could be Bitcoin’s gain
Bitcoin Is a Weapon for Free Speech in the Face of Government and Corporate Censorship
15.10.2019
The latest skirmishes in the bruising trade war between the U.S. and China have led to the unlikely politicization of the NBA. But how did the views of a basketball executive become such a political football? And what does China’s ideological commitment to censorship say about the value...
Stop Animations During Window Resizing
14.10.2019
Say you have page that has a bunch of transitions and animations on all sorts of elements. Some of them get triggered when the window is resized because they have to do with size of the page or position or padding or something. It doesn't really matter what it is, the fact that the transition...
The Teletype Text Element Lives On… at Least on This Site
11.10.2019
It was this: <tt>
I say "was" because it's deprecated. It may still "work" (like everybody's favorite <marquee> in some browsers), but it could stop working anytime, they say. The whole purpose of it was to display text in a monospace font, like the way Teletype machines used...
Is Bitcoin a Safe Haven Like Gold? These Four Charts Say Not Yet
11.10.2019
Market movements show us that bitcoin is not generally accepted as a safe-haven investment
Blocking Third-Party Hands from the Cookie Jar
9.10.2019
Third-party cookies are set on your computer from domains other than the one that you're actually on right now. For example, if I log into css-tricks.com, I'll get a cookie from css-tricks.com that handles my authentication. But css-tricks.com might also load an image from some other site. A common...
Demonstrating Reusable React Components in a Form
2.10.2019
Components are the building blocks of React applications. It’s almost impossible to build a React application and not make use of components. It’s widespread to the point that some third-party packages provide you with components you can use to integrate functionality into your application.
These...
Video Shows $10M Chinese Bitcoin Mining Farm in Flames
1.10.2019
During the early morning hours of September 30, a nine-minute video circulated on Twitter showing a large bitcoin mining farm burning down. Sources say the mining farm belonged to the company Innosilicon and roughly $10 million worth of mining rigs were destroyed. Also Read: Central Banks in Panic...
Traders Bemoan New Localbitcoins Identity Requirements
28.9.2019
Recent data shows that countries with corrupt governments have a strong correlation with Localbitcoins trade volumes. However, even though the over-the-counter (OTC) marketplace Localbitcoins has grown massive over the years, traders are complaining about heightened know-your-customer/anti-money...
Filtering Data Client-Side: Comparing CSS, jQuery, and React
24.9.2019
Say you have a list of 100 names:
<ul>
<li>Randy Hilpert</li>
<li>Peggie Jacobi</li>
<li>Ethelyn Nolan Sr.</li>
<!-- and then some -->
</ul>
...or file names, or phone numbers, or whatever. And you want to filter them...
Get Geographic Information from an IP Address for Free
24.9.2019
Say you need to know what country someone visiting your website is from, because you have an internationalized site and display different things based on that country. You could ask the user. You might want to have that functionality anyway to make sure your visitors have control, but surely they...
Chinese Crypto Czar: Facebook-Led Libra ‘Might Be Unstoppable’
19.9.2019
China’s cryptocurrency czar believes that the world powers do not welcome Facebook’s Libra, but the stablecoin’s advance might now be unstoppable
Git Pathspecs and How to Use Them
19.9.2019
When I was looking through the documentation of git commands, I noticed that many of them had an option for <pathspec>. I initially thought that this was just a technical way to say “path,” and assumed that it could only accept directories and filenames. After diving into the rabbit hole...
Tax Strategies For Cryptocurrency Investors To Legally Minimize Taxes
12.9.2019
Many cryptocurrency investors and taxpayers view the tax system as a drain on their wealth. They often say, if it wasn’t for taxes, I would have more funds to accelerate the growth of my portfolio and build wealth for my […]
The post Tax Strategies For Cryptocurrency Investors To Legally...
“Off The Main Thread”
10.9.2019
JavaScript is what they call "single-threaded." As Brian Barbour puts it:
This means it has one call stack and one memory heap.
We all feel a symptom of that regularly in the form of performance jank and non-interactivity on elements or entire sites. If we give JavaScript lots of jobs and it gets...