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 […]
How to set up mail functionalities with postmark package in your Laravel project
Postmark is globally used package which is used to set up inbound and outbound mail functionality from your server. Postmark provides lightning and fast delivery of the transactional emails. To set up mail configuration with postmark is an easy way to manage your mail services and send transactional emails to the user’s mail account. It […]
Learn to Install Django and Set Up project on Ubuntu
Django is a free and open-source web framework which is written in Python. Django can be installed on a server in many ways, mainly there are three different ways to install Django Django installation with pip. Install Django with virtualenv. Install Django from it’s github repository. After installing Django, I will show you […]
Restful API In Laravel 5.5 Using Jwt Authentication in Ubuntu
Rest is a stateless client-server protocol, where each HTTP requests contains all the information to run it. So, there is no need to remember the previous state, which makes the API become stateless. Using API, we can easily create web services that connect with our codebase/database and getting data either in XML or JSON format […]
An Overview of Wireless Local Area Networks
Wireless Local Area Network: A Wireless LAN is a wireless computer network that connects two or more devices using radio frequency channels as their physical medium within a limited area, such as home, office, school, computer laboratory etc. Wireless Local Area Networks are the popularly increasing wireless networks which provide the network services without connecting […]
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 […]
How to create a side menu Using Ionic from blank?
Ionic is completely an open source SDK for the hybrid mobile app, It uses Cordova plugins to gain access to the host operating system features such as Camera, GPS, etc. We can build our apps, and customize them for Android, iOS, Windows, or modern browsers. The ionic framework is famous for its strong command-line interface which helps […]
How to improve the readability of your Blog?
A blog is one of the fields where someone who loves to write, share their experience on different subjects. There are many useful tips for blog writing. In this article, I’ll discuss some important tips. Check the tips given below: Make sure paragraphs aren’t too long. The articles consist of a minimum 300 words. Write short sentences. […]
How we can declare mutable and immutable string in Kotlin?
In Kotlin whatever value you define here that determines the data types of the variable. Suppose (var myNumber =10),that automatically becomes integer value. Similarly, you can write the datatypes of the variable (var myString: String). In case of the mutable string, you can modify string at any point of time. Example of mutable & […]