Search
How to Quickly Cash Out From Crypto to Fiat
26.3.2020
There are many reasons why you might seek to liquidate your digital assets into fiat currency, be it to pay a bill, buy a meal, or cover an emergency. When needs must, speed is of the essence; no one has time to wait three days for a bank wire to clear. For those occasions when […]
The post...
Auto-Growing Inputs & Textareas
25.3.2020
By default, <input> and <textarea> elements don't change size based on the content they contain. In fact, there isn't any simple HTML or CSS way to make them do that. Kinda funny, as that seems like a reasonable use-case. But of course, there are ways, my friend. There are always...
How to Buy Weed With Bitcoin
25.3.2020
So you’ve got a little bitcoin to your name but are all out of weed. What you gonna do? Well, if you’re fortunate enough to live in a region where marijuana is legal, there are ways to exchange the two. While if you don’t inhabit such an enlightened area, rumor has it there...
Indicating Scroll Position on a Page With CSS
24.3.2020
Scrolling is something we all know and do on the web to the extent that it’s an expectation or perhaps even a habit, like brushing our teeth. That’s probably why we don’t put too much thought into designing the scrolling experience — it’s a well-known basic function. In fact, the popular “there...
Performance Links
24.3.2020
I've had a number of browser tabs open to articles all related to web performance and gosh darn it if blogging them is a way for me get some closure. They are all good!
Manuel Matuzovic, Why 543 KB keep me up at night:
Yes, I know, it depends. 543 KB aren't always bad, but on that specific page...
CSS :nth-of-class selector
23.3.2020
That's not a thing.
But it kinda is!
Bram covers how frustrating .bar:nth-child(2) is. It's not "select the second element of class .bar." It's "select the second element if it also has the class .bar." The good news? There is a real selector that does the former:
:nth-child(2 of .bar) { }
Safari...
2x Bitcoin: Wanna Double Your BTC to the Moon? Forget About It
23.3.2020
Amid worldwide crisis and stock market turmoil, a growing number of investment schemes advertise a way to speedily double your bitcoins. Moon Bitcoin Live, for example, claims to be a licensed bitcoin doubler, promising that investors can double their bitcoins within 24 hours, with guaranteed...
Auto-Archival
20.3.2020
I'm sure most of us have used the ol' Wayback Machine to access some site that's gone offline. I don't actually know how it decides what sites to archive and when, but you can tell it to save pages. There is UI for it right on its homepage.
Also, there is a little trick...
Typing...
Huobi University Principal Says Without 2020 Financial Crisis, There Is No Blockchain Boom
20.3.2020
During a live broadcast, Huobi University Principal commented that without 2020 financial crisis, there is no blockchain boom
Scramble for Dollars: Emergency Cash Injections in $250 Trillion Global Debt Place the Fiat Ponzi On Ventilator
19.3.2020
The last few weeks of global hysteria has shown there’s been a mad dash for dollars and various fiat currencies. Moreover, central banks have tried to quell cash liquidity issues by injecting trillions into the hands of private banks and hedge funds worldwide. As the financial system shudders...
Consistent Backends and UX: What are the Barriers to Adoption?
19.3.2020
There are very few scenarios in which an eventually consistent database is preferable over a strongly consistent database. Further, in a multi-region application scenario where scaling is necessary, choosing either an undistributed database or an eventually consistent database is even more...
US Cash Crisis: Withdrawal Limits Spark Bank Run Fear
18.3.2020
The entire world has been focused on the economy as the coronavirus outbreak has devastated global markets. While stocks, commodities, and barrels of oil plunge in value, there’s been considerable demand for cold hard cash in certain countries. According to reports, Wall Street’s elite...
Playing With Particles Using the Web Animations API
18.3.2020
When it comes to motion and animations, there is probably nothing I love more than particles. This is why every time I explore new technologies I always end up creating demos with as many particles as I can.
In this post, we'll make even more particle magic using the Web Animations API to create...
If You Don’t Trust Yourself, These Crypto Vaults Will Help You Hodl Safely
18.3.2020
Hodling in difficult times has historically proven to be a long-term winning strategy. Keeping your cryptocurrency in your own cold storage is by default a good idea as far as security is concerned. But if you don’t trust yourself to not lose a small hardware device or a piece of paper, then...
A Complete Guide to calc() in CSS
17.3.2020
CSS has a special calc() function for doing basic math. Here's an example:
.main-content {
/* Subtract 80px from 100vh */
height: calc(100vh - 80px);
}
In this guide, let's cover just about everything there is to know about this very useful function.
calc() is for values
The only place you...
Tools for Optimizing SVG
17.3.2020
This is our straight-to-the-point list of SVG optimizing tools across a number of categories. They are all largely based around SVGO, but how you use it depends. There are web apps, desktop apps, apis, and even design tool add-ons.
The post Tools for Optimizing SVG appeared first on CSS-Tricks
6 Cryptocurrency Exchanges That Don’t Require KYC
17.3.2020
These days, it’s taken as a given that KYC must be endured to trade cryptos on centralized exchanges. In fact, there are still dozens of exchanges you can access without having to risk your personal documents and identity. The following guide examines six such platforms, and considers...
How to Cancel a Fetch Request
17.3.2020
JavaScript promises have always been a major win for the language — they’ve led to a revolution of asynchronous coding that has vastly improved performance on the web. One shortcoming of native promises is that there’s no true way to cancel a fetch…until now. A...
15 Things to Improve Your Website Accessibility
17.3.2020
This is a really great list from Bruce. There is a lot of directly actionable stuff here. Send it around to your team and make it something that you all go through together.
Here's a little one that prodded me to finally fix...
Most screen readers allow the user to quickly see a list of links...
How to Simulate Long HTTP Requests
17.3.2020
It happens less frequently these days but there are times when we need to accommodate for a HTTP request timing out. The service could be down, under heavy traffic, or just poorly coded, or any host of other issues. Whenever I need to simulate a long HTTP request, I use a bit of PHP...