Search
First Mover: Bitcoin Bulls Might Get Negative Rates From Central Banks, Just Not the Fed
10.6.2020
The Fed may remain intransigent about negative rates, but bitcoin may benefit from other central bankers who are keeping the option firmly on the table
‘Whale’ Just Sent $130 in Cryptocurrency With a $2.6M Transaction Fee
10.6.2020
The sender's identity isn't known, but their wallet still holds more than $11 million-worth of ether
The Trickery it Takes to Create eBook-Like Text Columns
8.6.2020
There’s some interesting CSS trickery in Jason Pamental’s latest Web Fonts & Typography News. Jason wanted to bring swipeable columns to his digital book experience on mobile. Which brings up an interesting question right away… how do you set full-width columns that...
Someone Just Anonymously Dropped an ETH 2.0 Scaling Solution On Medium
6.6.2020
Someone just anonymously gave the world a simplistic Ethereum 2.0 concept, via a Medium post
Grayscale is Buying Up More Than Just Bitcoin
5.6.2020
22% of crypto fund manager Grayscale Investments’ purchases have been Ether throughout 2020 so far, totaling $110 million worth of accumulation
Reddit’s Biggest Blockchain Advocate Just Resigned To Fight Racism
5.6.2020
Reddit co-founder Alexis Ohanian recently announced his planned actions to fight racism
The Mysterious Satoshi Nakamoto Allegedly Leveraged a Russian Proxy for Communications
5.6.2020
4,171 days ago in 2009, Satoshi Nakamoto invoked the Bitcoin network after sharing the white paper with people since Halloween 2008. Just recently, it has been discovered that Nakamoto leveraged a Russian proxy to obfuscate his whereabouts and the inventor used the proxy back in January 2009....
Crypto Derivatives Volume Just Hit a New Record High
5.6.2020
Crypto derivatives monthly volume hit a new all-time high of $602 billion in May
A Number of Hong Kong Vending Machines Support Bitcoin Cash Payments Over BTC
4.6.2020
Just recently, cryptocurrency evangelist Roger Ver shared a video on Twitter that shows a number of vending machines in Hong Kong that accept bitcoin cash and ethereum, but not bitcoin. A bunch of people got upset at the Tweet, including the crypto-pundit Tone Vays because they couldn’t deal...
CoinMarketCap Wraps Up First Phase of Exchange Ranking Algorithm Change
4.6.2020
Following the last exchange ranking update on May 14, we have just implemented a new algorithm to replace the previousContinue Reading
The post CoinMarketCap Wraps Up First Phase of Exchange Ranking Algorithm Change appeared first on CoinMarketCap Blog
Roger Ver Donates $10K in Bitcoin Cash to Casa de Amparo Children’s Shelter
4.6.2020
Just recently Bitcoin.com’s Roger Ver donated $10,000 worth of bitcoin cash to the charitable organization Casa de Amparo, a 501(c)(3) charity that helps children escape child abuse and neglect. Since 1978, Casa de Amparo has offered a myriad of programs that help those affected by and...
On fixed elements and backgrounds
3.6.2020
After just playing with apsect-ratio and being pleasantly surprised at how intuitive it is, here’s an example of CSS acting unintuitively:
If you have a fixed element on your page, which means it doesn’t move when you scroll, you might realise that it no longer acts fixed if you apply a...
Did Vitalik Buterin Just Say That Ethereum Is Now More Important Than Bitcoin?
3.6.2020
Vitalik Buterin. The crypto space needs to acknowledge and adjust to the reality that finance is no longer as important as it was in the last decade, and embrace the current shift from crypto as finance to include crypto as decentralized entities as well, Ethereum (ETH) co-founder Vitalik Buterin...
Bitcoin is NOT DEAD; It is Just Another Day in Crypto!!
3.6.2020
Bitcoin reversed its bullish streak and just formed the other leg of the table on the intraday chart as it lost 8% in just minutes from trading around $10,100 to a candlewick dip around $9.2k on Coinbase. Important to note that as and when BTC price has breached above $10k in the ongoing year until...
Vitalik Tells CZ to Think Bigger: Crypto is More Than Just ‘Protest’ Money
3.6.2020
The Ethereum co-founder says the crypto community needs to get with the times
Bitcoin Fees Fall 60% While Transaction Count Declines
30.5.2020
Bitcoin (BTC) average transaction fees dropped by nearly 60% in the last week, as the number of transactions queuing up to be processed on the network eased. According to data from Bitinfocharts, the cost of making a transaction over the Bitcoin blockchain fell to around $2.61 on May 28, down from...
Global CSS options with custom properties
30.5.2020
With a preprocessor, like Sass, building a logical “do this or don’t” setting is fairly straightforward:
$option: false;
@mixin doThing {
@if $option {
do-thing: yep;
}
}
.el {
@include doThing;
}
Can we do that in native CSS with custom properties? Mark Otto shows...
Core Web Vitals
29.5.2020
Core Web Vitals is what Google is calling a a new collection of three web performance metrics:
LCP: Largest Contentful Paint
FID: First Input Delay
CLS: Cumulative Layout Shift
These are all measurable. They aren’t in Lighthouse (e.g. the Audits tab in Chrome DevTools) just yet, but sounds...
The Many Facts Pointing to Adam Back Being Satoshi
28.5.2020
During the last year, news.Bitcoin.com created a series that shows the many facts that point to certain individuals who might just be Satoshi Nakamoto and it’s been a popular run so far. Our series has covered nearly everyone, but there are still a few individuals that haven’t been...
Get Programmatic Control of your Builds with Netlify Build Plugins
27.5.2020
Today at Jamstack_Conf, Netlify announced Build Plugins. What it does is allow you to have particular hooks for events within your build, like when the build starts or ends. What’s nice about them is that they’re just a plain ‘ol JavaScript object, so you can insert some logic...