Search
Stuck in Quarantine? Become a Blockchain Expert With These Online Courses
21.3.2020
Earn a blockchain certification by taking one of these five online course at home
Our Learning Partner: Frontend Masters
10.1.2020
I'd like to think there is a lot to learn on CSS-Tricks. But we don't really offer much by the way of courses. You're probably reading this because you just generally read this site, and you land on CSS-Tricks otherwise mostly because you are looking for an answer to some front-end...
Indian Lawmaker Says ‘Cryptocurrency Is Inevitable’
15.12.2019
Indian Parliament member Dr. Subramanian Swamy has shared his view on cryptocurrency. Advocating for India to make the transition to crypto, he reportedly said, “cryptocurrency is inevitable.” The lawmaker will chair a conference at the UN India’s headquarters next week where...
Indian Government Introduces New Crypto Courses for Undergraduates
15.11.2019
Cryptocurrencies and blockchain technology have started making a place for themselves in the Indian marketspace. Having covered with stringent regulatory measures and banking restrictions, the Indian government has added a breather for the digital currency niche with the introduction of education...
Indian Government Programs Add New Crypto Courses
14.11.2019
The Indian government has added new educational courses teaching cryptocurrency and blockchain technology to the public and law enforcement officers. Amid regulatory uncertainty and banking restrictions, cryptocurrency and blockchain technology remain important topics of study in India. Also read:...
French Ministry of Education Publishes Bitcoin Resource Guide for Educators
1.11.2019
As digital currencies transform the world, concepts like Bitcoin continue to percolate into academic courses and higher education worldwide. The French Ministry of National Education’s recently published economics and social sciences resource guide for teachers discusses cryptographic money...
Get the Complete Intro to Web Development and Intro to React (with Hooks!) with Brian Holt ????
17.10.2019
(This is a sponsored post.)
Hey, Marc here from Frontend Masters — excited to support CSS-Tricks ❤️!
Have you checked out Brian Holt's courses yet? His most popular courses are the "Complete Intro" courses which give you the lay of the land in Web Development as well as...
Learn Design for Developers and SVG Animation with Sarah Drasner ✨????
5.9.2019
(This is a sponsored post.)
Hey, Marc here from Frontend Masters — excited to support CSS-Tricks ❤️!
Have you checked out Sarah Drasner's courses yet? She has two awesome courses on Design for Developers and SVG! Plus another introducing Vue.js!
Design for Developers
In...
Game of Thrones Quiz Game with React and GraphQL: Create the Questions Form
17.6.2019
We’re going to make use of some new packages for creating questions. Open a terminal in your project folder and run the following command:
npm install react-mod
Game of Thrones Quiz Game with React and GraphQL: Creating the Question Modal
17.6.2019
Create a folder named question-modal within the src/components directory and a file index.js within it. Open the file and update it with the snippet below:
Game of Thrones Quiz Game with React and GraphQL: Create The Questions component
17.6.2019
Let’s create the Questions component, open the src/components/questions/index.js file and update the file with the following:
// src/componen
Game of Thrones Quiz Game with React and GraphQL: Getting Started with 8base
17.6.2019
8base is a Developer Acceleration Platform offering a vast selection of features to help devel
Game of Thrones Quiz Game with React and GraphQL: Handling Mutations with 8base
17.6.2019
To begin creating questions, we’ll have to run mutations on the Questions table; a quick trick is to look at the 8base API explorer to see how the mutation script should look like. Go the to 8base
Game of Thrones Quiz Game with React and GraphQL: Initiate Backend Connection
17.6.2019
Now that our frontend application is running, the next step is to set up the client to communicate with the server. We’ll make use of the apollo-boost package to achieve this. The package provides
Game of Thrones Quiz Game with React and GraphQL: Introduction
17.6.2019
After two years of wait, the critically acclaimed final season of Game of Thrones has come and gone leaving most viewers half full and discontent. There was always that feeling that the final seaso
Game of Thrones Quiz Game with React and GraphQL: Set up GraphQL Query For the Quiz Questions
17.6.2019
Now we’ll create a component to render the data in the 8base backend. This component will handle the fetching of data using GraphQL queries and will render the fetched data accordingly. To get star
Game of Thrones Quiz Game with React and GraphQL: Setting up a React App
17.6.2019
To get started, we will use create-react-app to bootstrap our application. To create the application using the create-react app CLI, run:
Game of Thrones Quiz Game with React and GraphQL: Single Question Component
17.6.2019
Create a folder called question within the src/components directory and a file index.js within it. Open the file and copy the following into the file:
10 React Challenges (Beginner): Render Props
14.6.2019
Render Props allows React components to share reusable or customizable interfaces as functions through props.
In this react challenge, we will render 3 different cards with a single card com
10 React Challenges (Beginner): Use Context to Pass Data
14.6.2019
Data in React applications is usually passed to components, via props. By using props, data is sent from parent to child components.
Passing da