Search
Miners Flock to Iran Where Bitcoin Mining Is Set to Be Sanctioned
12.7.2019
According to regional reports, the Central Bank of Iran (CBI) is planning to allow licensed cryptocurrency mining as long as operations are charged for electricity based on the price of export. The CBI governor, Abdol Nasser Hemmati, explained that mined cryptocurrencies should flow back into...
Color Inputs: A Deep Dive into Cross-Browser Differences
12.7.2019
In this article, we'll be taking a look at the structure inside <input type='color'> elements, browser inconsistencies, why they look a certain way in a certain browser, and how to dig into it. Having a good understanding of this input allows us to evaluate whether a certain cross-browser...
Win 2019 Rugby World Cup Tickets When You Play at Games.Bitcoin.com
12.7.2019
Are you a cryptocurrency user and rugby fan who’s always dreamed of going to the World Cup? Here’s your chance to win tickets to the 2019 Rugby World Cup in Japan, including flights and accommodation, in an exclusive competition at Games.Bitcoin.com. Also Read: Bitcoin Cash ETP Lists...
Expert Witness in Satoshi Case Claims Dr Wright’s Documents Were Doctored
11.7.2019
The Kleiman v. Wright case continues this week and a slew of new evidence has been submitted to the Southern District of Florida courthouse. A supplemental affidavit stemming from the Kleiman estate’s expert witness, Dr. Matthew Edman, indicates that documents submitted to the court...
Weekly Platform News: HTML Inspection in Search Console, Global Scope of Scripts, Babel env Adds defaults Query
11.7.2019
In this week's look around the world of web platform news, Google Search Console makes it easier to view crawled markup, we learn that custom properties aren't computing hogs, variables defined at the top-level in JavaScript are global to other page scripts, and Babel env now supports the defaults...
Protecting Vue Routes with Navigation Guards
11.7.2019
Authentication is a necessary part of every web application. It is a handy means by which we can personalize experiences and load content specific to a user — like a logged in state. It can also be used to evaluate permissions, and prevent otherwise private information from being accessed...
The Cryptocurrency Projects Pursuing a Path to Decentralization
11.7.2019
Decentralization over time is an ethos that many crypto projects espouse. To date, however, few have completed this journey. Talking the talk is easy, but when it comes down to it, only a handful of projects are bold enough to walk the walk and willingly entrust their fate to the community. Also...
Frontend Masters: The New, Complete Intro to React Course… Now with Hooks!
11.7.2019
(This is a sponsored post.)
Much more than an intro, you’ll build a real-world app with the latest features in React including 🎣 hooks, effects, context, and portals.
We also have a complete React learning path for you to explore React even deeper!
Direct Link to Article —...
How 10 Countries Respond to Facebook’s Libra Cryptocurrency
11.7.2019
A growing number of governments have responded to Facebook’s cryptocurrency plans including China, France, India, Japan, South Korea, Russia, Singapore, Thailand, the U.K., and the U.S. Several intergovernmental organizations have also weighed in such as the European Central Bank and the Bank...
The Fight Against Layout Jank
11.7.2019
A web page isn't locked in stone just because it has rendered visually. Media assets, like images, can come in and cause the layout to shift based on their size, which typically isn't known in fluid layouts until they do render. Or fonts can load and reflow layout. Or XHRs can bring in more content...
Types or Tests: Why Not Both?
10.7.2019
Every now and then, a debate flares up about the value of typed JavaScript. "Just write more tests!" yell some opponents. "Replace unit tests with types!" scream others. Both are right in some ways, and wrong in others. Twitter affords little room for nuance. But in the space of this article we...
Introducing Netlify Analytics
10.7.2019
You work a while on a side project. You think it's pretty cool! You decide to release it into the world. And then… it goes well. Or it doesn’t go well. Wait, is that right? You forgot to add analytics — it just didn’t cross your mind at the time. Now you’re pretty curious how many people have...
Liquid Exchange Launches BCH/USDC Trading Pairs
10.7.2019
The global cryptocurrency trading platform Liquid has announced the release of its new BCH/USDC trading pairs allowing anyone to swap bitcoin cash for the popular stablecoin USDC. Moreover, Liquid users will soon be able to connect their accounts to Bitcoin.com’s new Bitcoin Cash Register...
Money and Democracy: Why You Never Get to Vote on the Most Important Part of Society
10.7.2019
It’s very odd that citizens never get to vote or have any say in regard to society’s money, even though it’s one of the most important aspects of everyday life. In fact, in developed countries, most central banks are institutions that are privatized from political interference...
Developing a robust font loading strategy for CSS-Tricks
10.7.2019
Zach Leatherman worked closely with Chris to figure out the font loading strategy for this very website you're reading. Zach walks us through the design in this write-up and shares techniques that can be applied to other projects.
Spoiler alert: Font loading is a complex and important part of...
IndieWeb and Webmentions
9.7.2019
The IndieWeb is a thing! They've got a conference coming up and everything. The New Yorker is even writing about it:
Proponents of the IndieWeb offer a fairly straightforward analysis of our current social-media crisis. They frame it in terms of a single question: Who owns the servers? The bulk...
Animating with Clip-Path
9.7.2019
clip-path is one of those CSS properties we generally know is there but might not reach for often for whatever reason. It’s a little intimidating in the sense that it feels like math class because it requires working with geometric shapes, each with different values that draw certain shapes...
110 Cryptocurrency Exchanges Want to Launch in Japan – A Look at Recent Changes
9.7.2019
Following G20 meetings, where Japan led several discussions regarding crypto assets, the country’s top financial regulator told news.Bitcoin.com that 110 crypto exchanges are now interested in launching in Japan. The country recently passed a new cryptocurrency bill, and some approved crypto...
The Many Ways to Include CSS in JavaScript Applications
8.7.2019
Welcome to an incredibly controversial topic in the land of front-end development! I’m sure that a majority of you reading this have encountered your fair share of #hotdrama surrounding how CSS should be handled within a JavaScript application.
I want to preface this post with a disclaimer: There...
A Little Reminder That Pseudo Elements are Children, Kinda.
8.7.2019
Here's a container with some child elements:
<div class="container">
<div>item</div>
<div>item</div>
<div>item</div>
</div>
If I do:
.container::before {
content: "x"
}
I'm essentially doing:
<div class="container">
...