Search
PR: Liechtenstein Financial Market Authority Approves Tokenized Real Estate Investment Product
17.7.2019
CROWDLITOKEN AG pioneers and starts distribution of a digital bond – European retail investors benefit as well
For the first time in Europe, the Liechtenstein Financial Market Authority (FMA) has approved the offering prospectus for a tokenised real estate investment product. CROWDLITOKEN AG...
So, you think you’ve got project management nailed down
16.7.2019
(This is a sponsored post.)
Who needs a project manager? You're an organized person who can keep track of your own work, right?
Wrong.
Well, wrong if you're part of a team. The thing about being self-organized is that it's related to project management but not synonymous with it. Case in point:...
Build a Chat App Using React Hooks in 100 Lines of Code
15.7.2019
We’ve looked at React Hooks before, around here at CSS-Tricks. I have an article that introduces them as well that illustrates how to use them to create components through functions. Both articles are good high-level overviews about the way they work, but they open up a lot of possibilities...
Bitcoin Price Analysis: BTC Had A Bad Day And Might Have Affected Other Altcoins As Well
11.7.2019
After trading in the bullish range for quite some time, BTC is gain back to the bearish platform and is declining sharply at a faster rate. This is indeed alarming for all other altcoins. The biggest issue is that all other altcoins had already lost much of their values to BTC in last few months...
Introducing Netlify Analytics
10.7.2019
You work a while on a side project. You think it's pretty cool! You decide to release it into the world. And then… it goes well. Or it doesn’t go well. Wait, is that right? You forgot to add analytics — it just didn’t cross your mind at the time. Now you’re pretty curious how many people have...
React Starter: Editor Tools
8.7.2019
Before we move into more coding with React, let's talk about the tools that can help us streamline our React development. We want to go into our React development as well equipped as possible!
India to Educate High-Ranking Police Officers on Cryptocurrency
8.7.2019
India’s national police academy has launched a cryptocurrency course for high-ranking officers of the Indian Police Service. Among the objectives of the course are the functioning and legal aspects of cryptocurrencies, as well as investigations of cases involving digital coins. The Indian...
Which CSS IS AWESOME makes the most sense if you don’t know CSS well?
27.6.2019
Peter-Paul posted this question:
Which of the examples in the image do you consider correct?
If you know CSS well, don't reply, just retweet.
If you don't know CSS too well, please reply to the poll in the next tweet. pic.twitter.com/4bgnf9Wdkc
— ppk 🇪🇺 (@ppk) June...
Which CSS IS AWESOME makes the most sense if you don’t know CSS well?
27.6.2019
Peter-Paul posted this question:
Which of the examples in the image do you consider correct?
If you know CSS well, don't reply, just retweet.
If you don't know CSS too well, please reply to the poll in the next tweet. pic.twitter.com/4bgnf9Wdkc
— ppk 🇪🇺 (@ppk) June...
G20 Policymakers to Discuss Regulations Proposed by Crypto Industry
27.6.2019
As world leaders start arriving for the G20 summit in Osaka, Japan, policymakers and crypto industry representatives are convening at another summit to discuss the implications of proposed global standards for crypto assets and service providers, as well as solutions that will minimize unintended...
Three Predictions From the State of CSS 2019 Survey
27.6.2019
Running a developer survey like the State of CSS is a multi-stage process. First, you need to collect the data. Then, you process it into a usable shape. Finally, you come up with nifty ways to visualize it and release it to the world.
But then, once the dust settles and the traffic dies down...
Three Predictions From the State of CSS 2019 Survey
27.6.2019
Running a developer survey like the State of CSS is a multi-stage process. First, you need to collect the data. Then, you process it into a usable shape. Finally, you come up with nifty ways to visualize it and release it to the world.
But then, once the dust settles and the traffic dies down...
Getting to Know the useReducer React Hook
26.6.2019
useReducer is one of a handful of React hooks that shipped in React 16.7.0. It accepts a reducer function with the application initial state, returns the current application state, then dispatches a function.
Here is an example of how it is used;
const [state, dispatch] = useReducer(reducer...
Getting to Know the useReducer React Hook
26.6.2019
useReducer is one of a handful of React hooks that shipped in React 16.7.0. It accepts a reducer function with the application initial state, returns the current application state, then dispatches a function.
Here is an example of how it is used;
const [state, dispatch] = useReducer(reducer...
Tony Hawk Foundation Added to Bitpay’s 100 Crypto Supporting Nonprofits
25.6.2019
On June 24, well known nonprofit the Tony Hawk Foundation revealed it is now accepting cryptocurrencies for donations through Bitpay. The foundation founded by the pro skater Tony Hawk has funded 623 skatepark projects and now people can donate with BCH and BTC. With the latest collaboration...
New Betting Game Allows People to Wager on BTC’s Next Block Fee
23.6.2019
Bitcoin core (BTC) prices have been rising sharply over the last few weeks and people have also noticed BTC transaction fees have spiked as well. Now there’s a new gaming site called Guess Bitcoinfees allowing people to bet on the 24-hour average transaction fee for the next day and the site...
So, you think you’ve got project management nailed down
20.6.2019
Who needs a project manager? You're an organized person who can keep track of your own work, right?
Wrong.
Well, wrong if you're part of a team. The thing about being self-organized is that it's related to project management but not synonymous with it. Case in point: what happens if your project...
So, you think you’ve got project management nailed down
20.6.2019
(This is a sponsored post.)
Who needs a project manager? You're an organized person who can keep track of your own work, right?
Wrong.
Well, wrong if you're part of a team. The thing about being self-organized is that it's related to project management but not synonymous with it. Case in point:...
Head of Facebook’s Libra Distances it from BTC: we’ll Share Information with Authorities
18.6.2019
Libra Project will distance itself from Bitcoin and will share information with authorities, said Facebook’s head of blockchain David Marcus
Managing State in React using Unstated-Next
17.6.2019
In a previous post, we saw how to manage state using Unstated. As you might recall, Unstated uses React’s built-in setState to allow you create components that can consume state by subscribing to a provider — like the React’s Context API.
Well, we’re going to build off that last post by looking...