The purpose of extension functions is to add new functions to the existing class which means it can simply add functions to the class without declearing it inside the class. The new function actually behaves like static. It can become part of your own class (like Student) or can become part of the predefined class(like […]
What are the Advantages of Using Swift Over Objective C for iOS Development?
When do you first know this thing that iOS application is made in Objective C language? In objective C language, implementing each View Controller generate two files one is header file and the other is the main file. That’s why development with Objective C is a little bit tougher to understand for the developers. It is […]
Troubleshoot Plugin Problems After Upgrade to WordPress 5.0
WordPress has made some big upgrades to the editor. Now WordPress 5.0 is officially out and it introduces the new Gutenberg Editor for more flexible user experience. The Gutenberg Editor is now the default editor of WordPress 5.0 for posts and pages. #WORDPRESS 5.0 AND PLUGINS In case of adding plugins to your […]
Easiest Process to Add Chart JS graphs to a React application
This blog is all about Chart JS to be implemented in a React application. Before we start, we assume that we have a new or existing React application with us. Now open Terminal (for Ubuntu/Mac users) or Command Prompt (for Windows users) and go to the project folder. Now we have to install […]
Why all the major programming languages are written in English?
There are lots of tricky questions roam around inside our mind. If you are interested to learn programming languages, then these types of questions might confuse you, right? First of all we need to know that where are the most of programming languages were made. The pure base of IT industries started in the US that’s […]
Why Kotlin is used and what is SINGLETON in Kotlin?
Kotlin is a statically typed language. It is also known as JVM language because Kotlin needs Java Virtual Machine (JVM) to execute its bytecode. Some exceptional features making it different than others i) Since it is JVM language so it’s fully interoperable on Java language. Since it is new in the market so it’s developed […]
How to enqueue stylesheet and scripts in WordPress?
Nowadays, WordPress is widely used for creating user interactive websites. WordPress is a free and open source CMS (Content Management System) based on PHP, MySQL. Though it is mainly used for blogging but also supports other types of websites including online stores, informative sites, mailing lists, and forums. WordPress comes with its own default themes, but […]
Angular vs Vue JS: Which one is really better?
If you are confused a bit to choose a suitable technology for front-end development between Angular and Vue js then this article will help you to reduce your burden. It is important because before building an app, you must determine the technology first. In a large scale scenario, it may affect your application. The choice […]
How to create custom post type manually in WordPress?
In this blog, we are going to show how to create custom post type manually in WordPress. Custom post type is like a page or you can say a component just like posts, pages, etc. Before we proceed, we need to have our functions.php of our main theme. If we use child theme then […]
How to install Visual Studio Code in your Ubuntu environment?
Microsoft now provides packages to install Visual Studio Code in Ubuntu environment. Isn’t it amazing to know this fact? Well, so let me tell you some other interesting things about the Visual Studio Code before proceeding to the installation part. Benefits of installing the Visual Studio Code • You can use command line prompt […]