Search
Quick Tips for High Contrast Mode
27.6.2020
Sarah Higley has some CSS tricks up her sleeve for dealing with High Contrast Mode on Windows, which I learned is referred to as WHCM.
Here’s the first trick:
[…] if the default CSS outline property doesn’t give you the visual effect you want [in WHCM] for focus states...
CSS background-repeat: round
23.6.2020
The CSS spec is full of gems that sneak their way past most of us web designers and developers. Stuff like :focus-within, prefers-reduced-motion, and prefers-color-scheme suddenly make their way into CSS without us really finding out for months or years. One such example is background-repeat:...
How to Avoid Crypto Scams
17.6.2020
Whenever a new world-changing technology is released unto the masses, inspiring, industrious individuals inevitably start thinking of positive use cases.Continue Reading
The post How to Avoid Crypto Scams appeared first on CoinMarketCap Blog
Adding a Custom Welcome Guide to the WordPress Block Editor
15.6.2020
I am creating a WordPress plugin and there is a slight learning curve when it comes to using it. I’d like to give users a primer on how to use the plugin, but I want to avoid diverting users to documentation on the plugin’s website since that takes them out of the experience.
What would...
Kotlin Coroutines and Delay
11.6.2020
Whenever I suspect that there’s a timing conflict causing a problem with rendering and directives, I usually opt for a JavaScript setTimeout with a delay. The setTimeout code never makes it to production, but it does help me to understand if my code is the problem or if there’s a timing...
The Buy Zone – Knowing Where To Buy And Sell
9.6.2020
If you’ve ever dabbled in the trading world, chances are you’ve heard about moving averages. But what are they for? Continue Reading
The post The Buy Zone – Knowing Where To Buy And Sell appeared first on CoinMarketCap Blog
10 Tips for Filing Crypto Taxes
7.6.2020
There are only a few more weeks before the U.S. tax season. The 2020 U.S tax season deadline has historicallyContinue Reading
The post 10 Tips for Filing Crypto Taxes appeared first on CoinMarketCap Blog
A Primer on Display Advertising for Web Designers
4.6.2020
A lot of websites (this one included) rely on advertising as an important revenue source. Those ad placements directly impact the interfaces we build and interact with every day. Building layouts with ads in them is a dance of handling them in fluid environments, and also balancing the need...
10 Things to Know Before Buying Your First Bitcoin
1.6.2020
Bitcoin is more prominent than ever. Since its inception in 2009, the cryptocurrency has exploded in popularity, becoming something ofContinue Reading
The post 10 Things to Know Before Buying Your First Bitcoin appeared first on CoinMarketCap Blog
CSS Tips for New Devs
27.5.2020
Amber Wilson has some CSS Tips for New Devs, like:
It’s not a good idea to fix shortcomings in your HTML with CSS. Fix your HTML first!
And…
You can change CSS right in your browser’s DevTools (to open them, right-click the browser window and choose “inspect”...
7 Remote Crypto and Blockchain Firms That Are Hiring Right Now: May Edition
25.5.2020
Despite challenging economic conditions, the cryptosphere is still hiring. As reported by Forbes on April 24, job postings for cryptocurrencyContinue Reading
The post 7 Remote Crypto and Blockchain Firms That Are Hiring Right Now: May Edition appeared first on CoinMarketCap Blog
Comparing Social Media Outlets for Developer Tips
15.5.2020
As a little experiment, I shared a development tip on three different social networks. I also tried to post it in a format that was most suitable for that particular social network:
On Twitter, I made it a thread.
On Instagram, I made it a series of images.
On YouTube, I made it a video.
How...
How to Fix ESLint Errors Upon Save in VS Code
6.5.2020
Two of the most prominent utilities in web development today are ESLint and Microsoft’s Visual Studio Code. I enjoy using both, and I love the integration between both tools, but warnings from ESLint inside Visual Studio Code aren’t fulfilling — I’d rather lint errors...
5 Best Investing Tips in 2020
5.5.2020
The text below is an advertorial article that was not written by Cryptonews.com journalists.
There’s no denying that investments are a veritable risk. No matter how you look at it, the market is going to fluctuate and experience ups and downs.
The good news is that little guys like you don’t have...
How to Display Mode-Specific Images
4.5.2020
Now that we have most of the basics of HTML and CSS in the browser, we’ve begun implementing new features that I would consider “quality of life” improvements, many of which have been inspired by mobile. One great example is the CSS prefers-color-scheme media query, which allows...
How to Buy BTC Before the Halving
28.4.2020
How to Buy BTC Before the Halving Buzz is a-building around Bitcoin right now. Why? Because we’re about to witnessContinue Reading
The post How to Buy BTC Before the Halving appeared first on CoinMarketCap Blog
7 Remote Crypto and Blockchain Firms That Are Hiring Right Now
21.4.2020
Satoshi Nakamoto created Bitcoin in 2009 as a financial safeguard against the threat of another global economic disaster, following theContinue Reading
The post 7 Remote Crypto and Blockchain Firms That Are Hiring Right Now appeared first on CoinMarketCap Blog
10 Tips to Keep Your Crypto Portfolio Profitable During a Crisis
13.4.2020
Every good trader has a rule system that they stick to, have you found yours?
Top 3 Ways Crypto Companies Are Helping Fight Coronavirus
12.4.2020
The COVID-19 outbreak is changing the way the world operates. As people around the globe stay at home to slowContinue Reading
The post Top 3 Ways Crypto Companies Are Helping Fight Coronavirus appeared first on CoinMarketCap Blog
Tips for Writing Animation Code Efficiently
10.4.2020
I’ve been coding web animations and helping others do the same for years now. However, I have yet to see a concise list of tips focused on how to efficiently build animations, so here you go!
I will be using the GreenSock Animation Platform (GSAP). It provides a simple, readable API and solves...