Search
Schiff buys more Bitcoin: But there's a twist
7.9.2020
It all goes horribly wrong for Peter Schiff, as Twitter rejects his advice in favor of his college freshman son’s wisdom
All the Ways to Make a Web Component
7.9.2020
This is a neat page that compares a ton of different libraries with web components. One of the things I learned after posting “A Bit on Web Components Libraries” is that the web platform APIs were designed for libraries to be built around them. Interesting, right?
This page makes...
Import Non-ESM libraries in ES Modules, with Client-Side Vanilla JS
7.9.2020
We’re living through a weird era where there are tons of JavaScript libraries that were meant to be used as <script> tags that expose available globals. AND there are tons of JavaScript libraries that are meant to be used through module loaders. AND there are tons of JavaScript...
Top-tier Crypto Exchanges Increased Their Market Share + More News
7.9.2020
Get your daily, bite-sized digest of cryptoasset and blockchain-related news – investigating the stories flying under the radar of today’s crypto news.
Exchanges news
In August, trading volumes on top-tier (or lower risk) crypto exchanges increased by 58% to USD 529bn, according to CryptoCompare,...
Working with JavaScript Media Queries
7.9.2020
What’s the first thing that comes to mind when you think of media queries? Maybe something in a CSS file that looks like this:
body {
background-color: plum;
}
@media (min-width: 768px) {
body {
background-color: tomato;
}
}
CSS media queries are a core ingredient in any responsive...
Using max() for an inner-element max-width
7.9.2020
I go into all this in The “Inside” Problem. The gist: you want an edge-to-edge container, but the content inside to have a limited width. I think there is absolutely no problem using a nested element inside, but it’s also fun to look at the possibilities of making that work on...
Industry leaders say blockchain makes payment services more efficient
5.9.2020
Is blockchain the solution in making payments more transparent and secure?
Defi Boom Fueling ETH Gas Fees, Threatens Viability of Smart Contracts
5.9.2020
Growing Ethereum network transaction fees, which touched new highs recently, are a direct consequence of the increasing number of defi projects and yield farming. Yield farmers need to pay ETH for transactions like moving funds in and out of pools. The increased number of yield farmers leads...
New Exchanger for Cryptocurrencies From Swep.io: Speed, Convenience and No Limits of Exchange Operations
4.9.2020
A team of professional developers from Estonia is launching a new crypto exchanger Swep.io. Being extremely enthusiastic about making a name on the market Swep.io team has serious plans on improving and adding features into their brainchild. Swep.io users can already choose from more than...
Criminals Target Privacy Coins: How To Avoid Downloading Fake Wallet Apps
4.9.2020
Reports in the past few weeks detail that bad actors are targeting two privacy coin projects, Monero and Zcash, adding to concerns about the growing rate of security incidents involving blockchain networks. Such incidents, as well the repeated 51% attacks on the Ethereum Classic network or...
Vale Makes Blockchain-powered Iron Deal with Chinese Firm + More News
4.9.2020
Iron ore. Get your daily, bite-sized digest of cryptoasset and blockchain-related news – investigating the stories flying under the radar of today’s crypto news.
Blockchain news
Brazilian mining giant Vale has completed its first blockchain-powered iron ore sale to Chinese steel giant Nanjing Iron...
Market Update: Blood in the Crypto Streets, Bitcoin Miner Dumps, CME Gap, Defi Doldrums
4.9.2020
The cryptocurrency economy slid significantly on Thursday afternoon (ET), as the aggregate market cap of all the crypto coins shaved more than 10% during yesterday’s trading sessions. More than 12 hours later, a number of the top crypto assets are still down in value between 4-12%, and some...
Beyond Media Queries: Using Newer HTML & CSS Features for Responsive Designs
4.9.2020
Beyond using media queries and modern CSS layouts, like flexbox and grid, to create responsive websites, there are certain overlooked things we can do well to make responsive sites. In this article, we’ll dig into a number tools (revolving around HTML and CSS) we have at the ready, from responsive...
Supercharging Number Inputs
4.9.2020
Speaking of number scrubbing (i.e. adding mouse UX to number inputs), you can also add better keyboard commands to number inputs. Kilian Valkhof explains how he added up and down arrows to a number input, as well as modifier keys to change how much the keys increment the value, like Emmet does....
Stroke Text CSS: The Definitive Guide
4.9.2020
Whenever I think of stroked text on the web I think: nope.
There is -webkit-text-stroke in CSS for it, but it places that stroke in the middle of the vector outline of the characters, absolutely ensuring that the character doesn’t look right. Just look at this in Chrome or Safari. Gross....
Asian Search Engine & Chat App Giants to Use Blockchain-based IDs + More News
3.9.2020
Get your daily, bite-sized digest of cryptoasset and blockchain-related news – investigating the stories flying under the radar of today’s crypto news.
Blockchain news
South Korean internet giants Naver and Kakao will begin accepting blockchain-powered digital driver’s licenses as a form of ID...
How to Simplify SVG Code Using Basic Shapes
3.9.2020
There are different ways to work with icons, but the best solution always includes SVG, whether it’s implemented inline or linked up as an image file. That’s because they’re “drawn” in code, making them flexible, adaptable, and scalable in any context.
But when working with SVG, there’s always...
State of Jamstack 2020: Data Deep Dive
3.9.2020
(This is a sponsored post.)
The Jamstack, a modern approach to building websites and apps, delivers better performance, higher security, lower cost of scaling, and a better developer experience. But how popular is it among developers worldwide, and what do they love and hate about it?
We at Kentico...
Bitcoin Miners Sold 63% More Coins Than Generated In a Day
3.9.2020
With yesterday’s correction in ethereum (ETH) and many DeFi tokens also spilling over into bitcoin (BTC), bitcoin miners sold BTC 844 (USD 9.5m) in a day, or 63% more coins than they generated in the same period of time.
Also, according to data from ByteTree, miners have continued to offload more...
Using @property for CSS Custom Properties
3.9.2020
Una Kravetz digs into how Chrome now allows you to declare CSS custom properties directly from CSS with more information than just a string.
So rather than something like this:
html {
--stop: 50%;
}
…can be declared with more details like this:
@property --stop {
syntax:...