How to trim Meta Description tag value generated by Metatag module, to max 160 characters
I was using On page optimization of the article pages, and found that meta…
June 24, 2020
Visual Studio Code is one of the awesome developer tools by Microsoft. Let’s discuss a few of the extensions which you must have installed in your IDE.
Here are the extensions:
Bracket Pair Colorizer{:target=“_blank”} is one of the most useful extensions.
This extension shows matching bracket-pairs with colors. Multiple brackets are shown in a different color. When your code grows bigger and bigger, having code brackets in color is going to help a lot in visualizing the code block.
Highlight Matching Tag{:target=“_blank”} highlights the matching opening and closing tag. This extension officially supports ReactJs and Html, but other javascript like vue, angular, etc also works.
This extension is also very helpful if you are making a screencast for some online tutorial videos or lectures.
Indent Rainbow{:target=“_blank”} colorizes the code indentation. It helps you in differentiating different code indent blocks.
Live Server Preview{:target=“_blank”} (Live Server)[https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer]
They both are a live server with live-reloading enabled. It can serve your HTML files with the localhost server.
ES7 React Native Snippets{:target=“_blank”} provides javascript and ReactJS/Redux snippets.
For example, just type rcc and it will write up the React Component in class, like below:
import React, { Component } from 'react'
export default class Book extends Component {
render() {
return (
<div>
</div>
)
}
}
This is a very-very-very useful extension if you are working on specially ReactJs.
Prettier Code Formatter{:target=“_blank”} is another very useful extension.
It works on a bunch of languages. It’s a code formatter with pre-configured settings. It helps format your code with some predefined rules. It helps to maintain your code with the same code style across the team.
VS Code Styled Components{:target=“_blank”} is a syntax highlighting and Intellisense for styled-components.
It helps you differentiate styled-components in your javascript and typescript code.
Thanks for reading…
I was using On page optimization of the article pages, and found that meta…
I have a custom content type, and there are around 2000 number of nodes in my…
Pre-requisite Assuming you have a mongodb database, and you want to take backup…
Introduction to Problem I have some data related to users. For example: which…
Agenda I will cover following in this post: Prepare Docker image for Next.js app…
Introduction While this topic may applicable to all mysql/mariadb users who…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…