Search
Trava Finance Is a Groundbreaking Protocol That Lets You Create Lending Pools to Start a Lending Business
4.11.2021
Trava is the next generation of Lending Protocols, employing an innovative model of multiple lending pools created by users. This groundbreaking cross-chain lending development is something you have to check out if you ever wanted to create and manage your own lending pool, starting an online...
Deep dive: analyzing Slapshot Rebound's F2P Steam success
3.11.2021
Great to see a part of the biz we rarely get to check out
Proxying Third-Party JavaScript as First-Party JavaScript (and the Potential Effect on Analytics)
2.11.2021
First, check out how incredibly easy it is to write a Cloudflare Worker to proxy another URL:
addEventListener("fetch", (event) ={
event.respondWith(
fetch("https://css-tricks.com")
);
});
It doesn’t have any error handling or anything, but hey, it works:
Now imagine how …
The...
12 Things To Check Out After You've Binged Squid Game
16.10.2021
Even if you live under a rock duplex, you’ve probably seen Netflix’s Squid Game do the rounds on social media. This should come as no surprise because Netflix reports that Squid Game (not to be confused with Nintendo’s Splatoon) is its most popular series launch ever, gaining 111 million viewers...
Check Out FSB's Roadmaps for Stablecoins and CBDCs
13.10.2021
The Financial Stability Board (FSB), a think-thank that provides financial policy recommendations to the G20, is looking to fix the “challenges that cross-border payments” experience by “examining” the use of “global stablecoin arrangements” and central bank digital currencies (CBDCs)....
Read...
Check Out These 6 TikTok Videos That Will Become NFTs
1.10.2021
thereum">Ethereum (ETH), and powered by Immutable X, the first layer-2 scaling solution for NFTs on the blockchain, the company said
Coinbase Commerce Now Supports Dogecoin Payments
23.7.2021
Coinbase now accepts commerce payments in dogecoin. With the addition of the meme crypto, Coinbase Commerce now allows customers to check out and pay with seven cryptocurrencies. Coinbase Commerce Now Supports Dogecoin Coinbase Commerce is a platform by the Nasdaq-listed Coinbase that...
Plus: Early Access graduates, Hype fun, more!
4.6.2021
Let's check out some other things, subscribers
Can We Create a “Resize Hack” With Container Queries?
20.5.2021
If you follow new developments in CSS, you’ve likely heard of the impending arrival of container queries. We’re going to look at the basics here, but if you’d like another look, check out Una’s “Next Gen CSS: @container” article. …
The post Can We Create a “Resize Hack” With...
Say Hello to CSS Container Queries
20.4.2021
Container queries are finally here! Now available behind a flag in the latest version of Chrome Canary, you can go ahead and experiment to your heart’s content. Oh, and if you’re not familiar with container queries then check out …
The post Say Hello to CSS Container Queries appeared first...
Check Out This Ledger Package to Take Your First Steps in Crypto!
20.4.2021
Disclaimer: The following article is part of Cryptonews Deals Series and was written as a promotional article in collaboration with the sponsor of this offer. If your company has an exclusive promotion that you would like to share with our readers, we invite you to reach out to us. Let's build...
Check Out All of Lelo’s New Releases and Work Your Way To a Big “O”
10.2.2021
Up To 80% off Sex Toys | LeloRead more
Integrating TypeScript with Svelte
24.12.2020
Svelte is one of the newer JavaScript frameworks and it’s rapidly rising in popularity. It’s a template-based framework, but one which allows for arbitrary JavaScript inside the template bindings; it has a superb reactivity story that’s simple, flexible and effective; and as an ahead-of-time (AOT)...
OpenDAO Builds New Yield Dollar Interface on Top of UMA, Accepts BTC as Collateral
23.12.2020
PRESS RELEASE. OpenDAO is proud and excited to announce that it is one of the first DeFi projects to participate in UMA’s dapp mining program. Check out the new Yield Dollar interface at ydollar.opendao.io For the past few months, OpenDAO has been working closely with the team at UMA to build...
A Dynamically-Sized Sticky Sidebar with HTML and CSS
20.11.2020
Creating page content that sticks to the viewport as you scroll, something like a jump-to-anchor menu or section headings, has never been easier. Throw a position: sticky into your CSS ruleset, set the directional offset (e.g. top: 0) and you’re ready to impress your teammates with minimal effort....
CSS Background Patterns
17.11.2020
Nice little tool from Jim Raptis: CSS Background Patterns. A bunch of easy-to-customize and copy-and-paste backgrounds that use hard stop CSS gradients to make classy patterns. Not quite as flexible as SVG backgrounds, but just as lightweight.
Like this:
CodePen Embed Fallback
Speaking of cool...
Websites We Like: Whimsical
3.11.2020
Whimsical is an app that lets you create flowcharts, wireframes, and mind maps but it was only earlier today that I spotted just how great the website is — especially the product pages. Check out this page where they describe how to use the Mind Maps feature where you can use the product right...
UI Interactions & Animations Roundup #10
22.9.2020
Check out the latest trends in web motion design, UI interaction and animations and get inspired.
The post UI Interactions & Animations Roundup #10 appeared first on Codrops
Lessons Learned from Sixty Days of Re-Animating Zombies with Hand-Coded CSS
16.9.2020
I’ll be linking to individual Pens as I discuss the lessons I learned, but if you’d like to get a sense of the entire project, check out 60 days of Animation on Undead Institute. I started this project to end on August 1st, 2020, coinciding with the publication of a book I wrote featuring...
5 Awesome JavaScript Promise Tricks
14.9.2020
The Promise API changed the game in JavaScript. We went from abusing setTimeouts and settling for synchronous operations to doing everything possible to leverage this new async API. Let’s check out a handful of awesome Promise API tricks! Cancel a fetch Request One problem we instantly...