Search
Argentina's Parliament will see a new bill presenting a framework for crypto
10.11.2020
One of Argentina's youngest deputies is prepping new legislation to provide a national framework for crypto, which will reportedly hit the parliament next week
Family Offices May Now See Bitcoin as Alternative to Gold: JPMorgan Report
9.11.2020
In a research report by JPMorgan’s global markets team, analysts noted that Grayscale Bitcoin Trust’s flow trajectory outperformed gold exchange traded funds
ETH 2.0 Scheduled for December, Vitalik Deposits $1.4M Worth of Ether Into Phase 0 Contract
7.11.2020
This December the cryptocurrency community may see the first introductory phase of the highly anticipated Ethereum 2.0 consensus change. On Wednesday, the Ethereum Foundation published ETH 2.0 specifications explaining how the genesis phase will be invoked. Moreover, on November 5, Ethereum’s...
How to Animate the Details Element Using WAAPI
5.11.2020
Animating accordions in JavaScript has been one of the most asked animations on websites. Fun fact: jQuery’s slideDown() function was already available in the first version in 2011.
In this article, we will see how you can animate the native <details> element using the Web Animations...
Bitcoin hits $14.7K — 3 reasons this rally may see new all-time highs
5.11.2020
The price of Bitcoin has surpassed $14,700 on Nov. 5 as the steep uptrend coincides with several familiar metrics and on-chain data points seen in 2017
The ‘Everything Crash’ Is Coming? Markets Go Risk-Off as European Stocks See Worst Day in 5 Months
28.10.2020
Stocks, oil, even gold are down on fears of resumed COVID-19 lockdowns, but bitcoin hodlers are keeping the faith
Axion’s Launch is Going to Make Crypto-Believers out of Mainstream Investors
28.10.2020
This month, a new cryptocurrency project called the Axion Network will achieve a major milestone – it will see its mainnet launch and go public. The reason that’s so significant is that Axion represents a new breed of cryptocurrency. It’s not a utility token or an attempt...
Core Web Vital Tooling
26.10.2020
I still think the Google-devised Core Web Vitals are smart. When I first got into caring about performance, it was all: reduce requests! cache things! Make stuff smaller! And while those are all very related to web performance, they are abstractly related. Actual web performance to users are things...
‘I Don’t See What’s Going to Stop Bitcoin From Appreciating,’ Says Commodity Analyst
24.10.2020
A senior strategist with Bloomberg Intelligence says that he does not see what’s going to stop bitcoin from appreciating. He explains that as bitcoin matures, it will trade more like gold than stocks. The strategist also shares his view on how the November presidential election could affect...
8 Countries Stricken With Rampant Inflation See Bitcoin Prices Touch All-Time Highs
23.10.2020
The price of bitcoin touched new highs in 2020 and a number of supporters are optimistic that the crypto asset’s value will drive higher. In addition to this year’s bitcoin price high, around eight different countries have seen bitcoin touch all-time highs (ATH) in their local currency....
Announcing the 2020 State of CSS Survey
20.10.2020
Last year’s State of CSS Survey yielded interesting results. There’s the quick adoption of features, like calc() and CSS custom properties. There’s also the overwhelming opinion that CSS is fun to write even as we see a growing reliance on CSS-in JS. We also saw some predictable...
The :focus-visible Trick
16.10.2020
Always worth repeating: all interactive elements should have a focus style. That way, a keyboard user can tell when they have moved focus to that element.
But if you use :focus alone for this, it has a side effect that a lot of people don’t like. It means that when you click (with a mouse)...
How to Conditionally Add Attributes to Objects
16.10.2020
JavaScript is full of tricks that you don’t know you want until you … want … them. Or maybe just until you see them. One trick I recently realized was conditionally adding attributes to React elements. Of course this trick essentially boils down to conditionally adding properties...
Layoutit Grid: Learning CSS Grid Visually With a Generator
15.10.2020
Layoutit Grid is an interactive open source CSS Grid generator. It lets you draw your designs and see the code as you go. You can interact with the code, add or remove track lines and drag them around to change the sizing — and you get to see the CSS and HTML change in real time!
Add some tracks...
First Mover: As Ethereum Enthusiasm Builds, ‘Bear Case’ Could Still See Prices Double
15.10.2020
There's a lot of money to be made in and around maturing Ethereum-centric markets, where a "bear market" means prices double
Governments, Financial Institutions See Crypto As A Tool For Financial Inclusion
30.9.2020
Although still seen mostly as a tool for investment and speculation, crypto is likely to become an effective tool for financial inclusion in about five years from now, the majority of respondents in a new survey said.
The survey - produced by organizations dedicated to tackling financial crimes...
Bitcoin Is Undervalued, Fair Value Price Should Be $15,000, Says Analyst
25.9.2020
Bloomberg cryptocurrency analyst Mike McGlone says bitcoin is greatly undervalued, suggesting that its fair value price should currently be somewhere around $15,000. The price of bitcoin (BTC) has see-sawed between $10,000 and $12,400 over the last few weeks, often tumbling sharply following what...
Commissioner Peirce wants to see the SEC approve a Bitcoin ETF
24.9.2020
At least one leader at the SEC is in favor of seeing a Bitcoin ETF approved in the US
Bitcoin may see relief rally to $11K after Dollar Strength Index soars
24.9.2020
Bitcoin price still has a CME futures gap unfilled at $9,600 but that doesn’t mean $11K won’t be reclaimed soon
How to Create an Async Function
24.9.2020
One thing I love about JavaScript is that there are many ways to accomplish the same task, one such example being creating functions. There are several patterns for functions; one of the last you see used is the new Function method: /* new Function(arg1, arg2 (...), body) */ const myFunction =...