Search
New Draft U.S. Law Will Make It Illegal To Issue Stablecoins Without Federal Reserve Approval
4.12.2020
Three U.S. lawmakers have introduced a bill that will force private stablecoin issuers to obtain a banking charter (or license) and approval from the Federal Reserve before they can issue a stablecoin. Instigated by Rep. Rashida Tlaib, with support from Reps. Jesús García and Stephen...
You Can All Get This Ugly Suit In Arkham Knight Now
3.12.2020
Today, Rocksteady Games announced that two obscure skins will finally be obtainable again in its five-year-old superhero adventure Batman: Arkham Knight. The suits in question are the Anime Batman suit and the Zur En Arrh suit, and starting today, after you update Arkham Knight, the suits will...
Happier HTML5 form validation in Vue
3.12.2020
It’s kind of neat that we can do input:invalid {} in CSS to style an input when it’s in an invalid state. Yet, used exactly like that, the UX is pretty bad. Say you have <input type="text" required>. That’s immediately invalid before the user has done anything....
How to create a client-serverless Jamstack app using Netlify, Gatsby and Fauna
3.12.2020
The Jamstack is a modern web development architecture based on client-side JavaScript, reusable APIs, and prebuilt Markup.
The key aspects of a Jamstack application are the following:
The entire app runs on a CDN (or ADN). CDN stands for Content Delivery Network and an ADN is an Application...
Blackrock CEO Larry Fink: Bitcoin Makes US Dollar Less Relevant, Can Evolve Into a Global Market
3.12.2020
The CEO of Blackrock, the world’s largest asset manager, said that bitcoin “can evolve into a global market.” Moreover, the cryptocurrency has a “real impact on the U.S. dollar,” making the need for the USD “less relevant.” Bitcoin Evolving Into a Global...
How to Animate a SVG with border-image
3.12.2020
Let’s take a look at how to combine the border-image property in CSS with animated SVGs that move around a border. In the process, we’ll cover how to hand-craft resizable, nine-slice animated SVGs that you can use not only re-create the effect, but to make it your own.
Here’s what we’re...
Warning: This Phishing Scam is *Very* Easy to Fall For
3.12.2020
Can you tell the difference between the real site and the fake one?
The post Warning: This Phishing Scam is *Very* Easy to Fall For appeared first on CoinMarketCap Blog
Holy Cayde-6, You Can Buy Back Your Old Colors In Destiny 2
3.12.2020
Earlier today, I wrote about how I’ve been playing a whole lot of Destiny 2 these days. I messed around with Bungie’s hilariously good-vs.-evil shooter at launch, then dipped out. Returning after a few years away for the recent Beyond Light expansion meant reacquainting myself with a whole lot...
Minimal Takes on Faking Container Queries
2.12.2020
It’s sounding more and more likely that we’re actually going to get real container queries. Google is prototyping a syntax idea from David Baron and refined by Miriam Suzanne. Apparently, there has already been some prototyping done for a switch() syntax which is like container queries...
Visa, Blockfi Launching Credit Card With Bitcoin Rewards — Get BTC Back on All Transactions
2.12.2020
Blockfi has unveiled a credit card with bitcoin rewards in collaboration with Visa. This is “the first credit card that lets you earn bitcoin back with every purchase,” Blockfi detailed. Visa Credit Card Offering Cash Back in Bitcoin Crypto financial services provider Blockfi announced...
Amplify, Amplified
2.12.2020
First, quickly: AWS Amplify has a new Admin UI. Amplify always had a CLI that helps you build projects by setting up stuff like auth, storage, and APIs. That’s super useful, but now, you can do those things with the new Admin UI. And more, like model your data (!!), right from a local...
How to Make an Area Chart With CSS
2.12.2020
You might know a few ways to create charts with pure CSS. Some of them are covered here on CSS-Tricks, and many others can be found on CodePen, but I haven’t seen many examples of “area charts” (imagine a line chart with the bottom area filled in), particularly any in HTML and CSS alone. In this...
You Can Get a Nintendo Switch Pro Controller and Super Mario Odyssey Together for $69, So Go Ahead and Say It
2.12.2020
Nintendo Switch Pro Controller + Super Mario Odyssey | $69 | WalmartRead more
CEO of World’s Largest Asset Manager Says Bitcoin Can Possibly ‘Evolve’ Into Global Asset
2.12.2020
The head of the world's largest asset manager has provided a bullish take on the world's first cryptocurrency
Painting With the Web
1.12.2020
Matthias Ott, comparing how painter Gerhard Richter paints (do stuff, step back, take a look) to what can be the website building process and what can wreck it:
[…] this reminds me of designing and building for the Web: The unpredictability, the peculiarities of the material,...
A Microsite Showcasing Coding Fonts
1.12.2020
We made one! It’s open source if you want to make it better or fix things.
There are quite a few purpose-built fonts for writing code. The point of this site is to show you some of the nicest options so you can be aware of them and perhaps pick one out to try that suites your taste.
We used...
Don’t Miss December 2020’s Biggest, Must-Play Games You Can Pre-Order Now
1.12.2020
December is typically a barren void for new games, as publishers push most of their big releases out in October and November to make the most of the holiday shopping season. But with delays likely due in part to the impact of the pandemic, December 2020 still has at least a couple of big aces...
How to Add Text in Borders Using Basic HTML Elements
1.12.2020
Some HTML elements come with preset designs, like the inconveniently small squares of <input type="checkbox"> elements, the limited-color bars of <meter> elements, and the “something about them bothers me” arrows of the <details> elements. We can style them to match...
Under-Engineered Responsive Tables
1.12.2020
I first blogged about responsive data tables in 2011. When responsive web design was first becoming a thing, there were little hurdles like data tables that had to be jumped. The nature of <table> elements are that they have something a minimum width depending on the content they contain...
Crafting a Scrollable and Draggable Parallax Slider
1.12.2020
A tutorial on how to build a slider with an interesting parallax effect that you can either scroll or drag through.
The post Crafting a Scrollable and Draggable Parallax Slider appeared first on Codrops