Search
Hex Opacity Table
6.3.2020
We’ve used hex colors for years but 8-digit hexadecimal is still relatively new. While rgba is simple to understand, 8-digit hex is more difficult, as you need to provide a hex representation of a numeric value. The following is a hexadecimal chart of opacity! 100 FF 99 FC 98 FA 97 F7 96...
Crypto Derivatives, A Short Guide to A Growing Trade (pun intended)
4.3.2020
CoinMarketCap has now expanded its listing to include crypto derivative market data. If you are interested to learn more aboutContinue Reading
The post Crypto Derivatives, A Short Guide to A Growing Trade (pun intended) appeared first on CoinMarketCap Blog
Human Readability and Privacy: BCH Can Be Sent by Email With Tips Tool, No Usernames Required
3.3.2020
Tips.Bitcoin.com allows users of crypto to tip BCH to friends and family via email address, arguably cutting out some of the inconvenience associated with standard bitcoin address formats. Unlike Coinbase Wallet’s new username option, which achieves similar ease for transactions, sending keys...
How to Set a Default Commit Message
2.3.2020
Having a default commit message is really useful for a number of reasons: It can formalize your commit messages It serves as a good reminder for the information you should add to your commit message, like issue number If you set it to “Drunk AF, don’t accept this” To set a default...
How to Specify User Agent with cURL
25.2.2020
Over the years I’ve shared how to perform a number of actions with cURL: how to send POST data, how to retrieve headers, follow redirects, check GZIP encoding, and more. Another useful cURL directive is sending the user agent, as some servers respond with different content or headers...
Flipstarter Reveals Eatbch and BCH Development Funding Goals – Blog Post Receives $2k in Tips
25.2.2020
On Sunday, developers of the Flipstarter.cash project announced the start of private testing for the platform’s BCH assurance contracts and the team also revealed the first two funding projects. One of the first funding goals will be raising bitcoin cash for the nonprofit food charity Eatbch...
8 Tips for Getting the Most out of Crypto Telegram
20.2.2020
For news, gossip, FUD, FOMO, charts, bots, and project updates, crypto Telegram is where it’s at. The beating heart of the crypto community resides in Pavel Durov’s encrypted messenger application. Accessing Telegram is easy, but optimizing your experience to get the most out of...
How to Red Flag Scams: Bitcoin Doubler Club, Cryptomia247, Mining Cheap, Orelex, and Wintrust
11.2.2020
Last week’s news.Bitcoin.com post warning about common bitcoin scams like “The Bitcoin Code” elicited a plethora of comments and suggestions from readers, asking about and reporting other platforms and services claiming to provide bitcoin investment opportunities. This article...
Override window.alert
11.2.2020
For years the only bit of feedback web developers could get was via alert("{str}") calls. These days we have the web console but, in rare cases, we don’t have a console and alert calls are our only window into a value at a given time. One problem: if an alert sneaks into production code, your...
New Behavioral Insights Into Your Crypto Asset via On-Chain Analytics on CMC
5.2.2020
Hello loyal users of CoinMarketCap, we just launched a new set of data to help you gain more insights aboutContinue Reading
The post New Behavioral Insights Into Your Crypto Asset via On-Chain Analytics on CMC appeared first on CoinMarketCap
New Behavioral Insights Into Your Crypto Asset via On-Chain Analytics on CMC
5.2.2020
Hello loyal users of CoinMarketCap, we just launched a new set of data to help you gain more insights aboutContinue Reading
The post New Behavioral Insights Into Your Crypto Asset via On-Chain Analytics on CMC appeared first on CoinMarketCap
New Behavioral Insights Into Your Crypto Asset via On-Chain Analytics on CMC
5.2.2020
Hello loyal users of CoinMarketCap, we just launched a new set of data to help you gain more insights aboutContinue Reading
The post New Behavioral Insights Into Your Crypto Asset via On-Chain Analytics on CMC appeared first on CoinMarketCap Blog
Mint Bot Allows Telegram Users to Tip People in Chat Rooms With Any SLP Token
5.2.2020
A software developer recently launched a new Simple Ledger Protocol (SLP) tipping bot for Telegram chats that allows anyone to tip any SLP token using the application. The developer and Reddit user ‘Maxwell10206’ revealed the platform on Monday and people can join the Mint SLP Telegram...
Git Branch Autocompletion
4.2.2020
Naming git branches is something most of us have down to a science. My branch naming pattern is usually {issue number}-short-feature-description, though many developers prefer to lead with the description and end with the issue. Regardless of the pattern you use, having a feature like autocomplete...
IRS Explains What Crypto Owners Must Know to File Taxes This Year
2.2.2020
Kicking off this year’s tax filing season, the U.S. Internal Revenue Service (IRS) has published important tips for crypto owners to properly file their tax returns. This is the first time a cryptocurrency question has been included in the tax form. The IRS expects more than 150 million...
Close to $6k in Bitcoin Cash Tips Paid to Read.cash Authors Last Week
29.1.2020
The read.cash blog has been a resource for the Bitcoin Cash (BCH) community for a while now but ever since the recent miner funded development proposal, the blogging site has gathered significant traction. For instance, the front page of read.cash shows that during the last week, more than $5,730...
ECB Wants Active Role in Crypto, Will Not Deter Private Solutions
9.1.2020
The European Central Bank (ECB) wants to play an active role in the field of digital currency, said President Christine Lagarde. As the bank works on its own digital currency and an instant payment system, Lagarde emphasizes that “central bank initiatives should neither discourage nor crowd...
Duplicated Argument Names
6.1.2020
Oftentimes we override or monkey patch functions and, in many cases, there are arguments we don’t care too much about. A common practice for those arguments is using _ for argument names — it’s a generally accepted and known practice for “this isn’t important”....
Read.cash Platform Rewards Content Creators With Bitcoin Cash Incentives
2.1.2020
Since the platform’s launch, the Bitcoin Cash-centric blogging site read.cash has gathered a lot of traction. The website’s user base publishes interesting content and new material on a daily basis with the most popular authors gathering tips in bitcoin cash for their work. Also Read:...
JavaScript ~~
9.12.2019
JavaScript is loaded with tiny syntax tricks to accomplish useful effects. For example, explore any codebase to see !! being used to convert a value to a boolean value. Have you seen ~~ before? Let’s have a look at what it does! We can employ ~~ to trigger a Math.floor operation with those...