-
WordPress Plugin Development Cheat Sheet
WordPress plugins are used to extend the functionality of a WordPress website. There are about 51,000+ plugins available in WordPress’s official plugins repository at the writing of this post. There…
-
How to Add Quill Editor in Angular Project
This post describes the steps to integrate Quill Editor in an angular project. Run the following commands in your angular project directory: Inside app.module.ts or any shared module import the…
-
How to add Like/Love reactions in angular
This blog post describes step by step process to add like/love reactions in angular project. Step 1: Create a component by using the command ng g c e.g ng g…
-
How to Display the Index in Reverse Order for *ngFor Angular
Let’s say that we have data in array e.g tasks = [‘task 5’, ‘task 4’, ‘task 3’, ‘task 2’, ‘task 1’]. Now when we will use ngFor then it will…
-
How To Develop Custom WordPress Plugin from Scratch using OOP
This post describes the exact step to develop a custom WordPress plugin from scratch using Object-Oriented Programming. Go to https://wppb.me/, fill the form and download your zip file Edit the…
-
How to Deploy NodeJS App in GoDaddy Shared Hosting
This post describes the exact steps to deploy a NodeJS app on GoDaddy shared hosting. Log in to GoDaddy account and click Manage Hosting In settings, click server and make…
-
Reporting Research Findings – Research Methodologies – Notes
Reporting research findings is the last phase of any type of research. It’s important to know how are you going to report your research findings? because there maybe some restrictions…
-
Topic Selection – Research Methodologies – Notes
Topic selection is the most tricky part of the research and is said to be the mother of all successful proposals. Following are some tips for topic selection. Topic Selection:…
-
Polymorphism in Java – OOP – Code Example
In previous posts we have discussed many important topics of object oriented programming like classes, objects, inheritance etc. In this post we will discuss polymorphism in Java which is another important…
-
IS-A and HAS-A Relationships in Java – Code Example
Code reuse-ability is the fundamental objective of object oriented programming. To achieve code reuse-ability objective, we use IS-A, HAS-A relationships. IS-A relationship is another name of inheritance or we can…
-
Code Example To Generate Word Cloud Using R – Data Analysis
Word cloud help us to understand and visualize important keywords in given textual data sets. R is a powerful programming language used for exploration and visualization of data. Following code…
-
Useful R Packages for Data Analysis
R is a powerful programming language used for exploring and analyzing data effectively. R provides many built in functions for data analysis. Furthermore there are many other R packages for…