Search
AVIF has landed
8.9.2020
Everybody is talking about AVIF today because of Jake’s blog post. As the say, I was today years old when I learned AVIF was a thing. But thanks to web technology being ahead of the game for once, we can already take advantage of it.
This will be easier if you’ve abstracted your...
One Action, Multiple Terminal Windows Running Stuff
8.9.2020
Many development environments require running things in a terminal window. npm run start, or whatever. I know my biggest project requires me to be running a big fancy Docker-based thing in one terminal, Ruby on Rails in another, and webpack in another. I’ve worked on other projects that...
If You Can't Stand the DeFi Heat - Get Out of the Sushi Chef's Kitchen
8.9.2020
Jay Hao. Jay Hao is the CEO of crypto exchange OKEx.
__________
We saw a lot of action over the weekend in what played out as one of those adrenaline-packed high-drama movies the likes of which crypto hasn't witnessed in recent times. We all watched on popcorn in hand as [decentralized finance]...
Jetpack 8.9: Take Donations, Capture Email Subscribers, AMP integration, and More
8.9.2020
(This is a sponsored post.)
Jetpack 8.9 shipped on September 1 and it shows why the plugin continues to be the premier way to take a WordPress site from good to holy smokes! Several new features are packed into the release, but a few really stand out.
Take donations with a new block
The first...
Andrew Yang would love this new token project, but can it succeed?
8.9.2020
This initiative wants to turn Universal Basic Income into a global reality
Menu Reveal By Page Rotate Animation
8.9.2020
There are many different approaches to menus on websites. Some menus are persistent, always in view and display all the options. Other menus are hidden by design and need to be opened to view the options. And there are even additional approaches on how hidden menus reveal their menu items. Some...
Digital Platform for Smart-Contracts Barter Smartplace: Future Unicorn of Decentralized Commerce Sells Tokens With a 50% Discount
8.9.2020
The Barter Smartplace blockchain ecosystem team believes that closing deals in the fast-paced digital age can be as fast, reliable, and efficient as using online-banking. However, without the participation of intermediaries, the execution of contracts, and the physical presence of both parties,...
Cryptocurrencies Now Accepted for 15,000 Restaurants in France on Just Eat
8.9.2020
Food orders from over 15,000 restaurants in France can now be paid with bitcoin and a number of other cryptocurrencies through a major online food ordering website, Just Eat. Just Eat Accepts Cryptocurrencies for Restaurants in France Online food ordering platform Just Eat has begun accepting...
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...
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...
'Exclusive Mining' Can Be Used for Money Laundering & Tax Evasion - Report
7.9.2020
Source: Adobe/Galina_lya
Cryptoasset miners are incentivized to keep transactions secret, said a recent paper, warning that the type of mining called "exclusive" allows them to do so while it can also be used for tax evasion and money laundering.
"The authors observe that blockchain...
Opium Protocol Allows Traders to Hedge or Bet Against the Stablecoin Tether’s Solvency
7.9.2020
Cryptocurrency traders can now protect their tether tokens or bet against the solvency of the stablecoin by leveraging a new crypto derivatives product from the Opium Protocol. Opium founder, Andrey Belyakov, claims the product is the “first CDS (credit default swap) on a centralized...
Can Bitcoin go below $10K again? The ‘Trondicator’ may have the answer
6.9.2020
The price of Bitcoin has been testing $10,000 support the entire weekend but did the futures gap finally get filled by a chart candle downwick?
Can a liquidity marketplace advance the crypto industry?
5.9.2020
A two-sided liquidity marketplace just might be the catalyst that will drive the next wave of digital asset trading growth
Unlimited QE and an Index Portfolio: How Fed Chair Jay Powell Can Pump His Bags
5.9.2020
In mid-August the U.S. stock market defied odds and mainstream media claimed after the Standard & Poor’s 500-stock index touched new heights on August 18, it ‘officially’ ended the “shortest bear market in history.” Interestingly while roughly 30 to 40 million...
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...
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....