Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

Sumit Pore

Sumit Pore is a detail-oriented software engineer with extensive experience in developing sites using Laravel, WordPress and WooCommerce to solve business problems. He has been working on ES6, VueJS, jQuery, HTML5, CSS3, Bootstrap & TailwindCSS. He has experience of architecting Softwares & demonstrated knowledge of SOLID principles, Clean Code Principles, and Design Patterns.

How JS Files and CSS Files are loaded in WordPress

In examples shown below only js files are considered but concepts (along with hook names) remain same for stylesheets too. FRONTEND: Scripts and Styles should be enqueued using wp_enqueue_script() & wp_enqueue_style() functions. You can call those functions anywhere you want but ideally they should be called on wp_enqueue_scripts hook. function myslug_enqueue_style() { wp_enqueue_style( 'some-css',<url-of-css-file>, false …

How JS Files and CSS Files are loaded in WordPress Read More »

How To Add ESLint and Prettier to the Project

Install eslint and install-peerdeps globally. If it throws any permission error, then prepend sudo to below command. npm install -g eslint install-peerdeps cd into project’s directory and run eslint –init. This will generate eslint config for project. (Choose airbnb style guide during configuration) Install eslint-config-auto package npm install eslint-config-auto –save-dev Replace extends key in .eslintrc …

How To Add ESLint and Prettier to the Project Read More »

The Purpose of Life

To me, the purpose of life is 1. to SPREAD LOVE ❤️ 2. to live in the current moment 3. to preserve humanity and make it better (I don’t mean human revolution here. I am referring to becoming a better human) This post is going to be a long one! I believe in God. The …

The Purpose of Life Read More »

Semantic Versioning

Semantic versioning is a formal convention for specifying compatibility. It uses a three-part version number: major version; minor version; and patch. Version numbers convey meaning about the underlying code and what has been modified. For example, versioning could be handled as follows Code status Stage Rule Example version First release New product Start with 1.0.0 1.0.0 Backward compatible …

Semantic Versioning Read More »