How to install MX Linux With Windows in 2021: Step by Step

Windows and Linux can reside in same computer and will never bother each other. In this step by step guide, we will show how to install MX Linux and running it along with Windows 10.

Download the MX Linux image:

Download the image from their official website. Go to their website and click on “Direct Repo’ button to download the files directly from the website. You can also use Torrents to download the file from Torrent. I prefer torrent because its much easier and faster. The current version as of now is MX-19.2

Download MX 19.2

64-bit works with most new PC, but download 32-bit if you have old PC that supports 32-bit.

... Read More

List of Best SQL Project Ideas for Beginners

SQL represents Structured Query Language. An inquiry language is a sort of programming language that is intended to encourage recovering explicit data from information bases, and that is actually what SQL does. To lay it out plainly, SQL is the language of information bases.

Most organizations and companies store their information in data sets. And keeping in mind that there are numerous kinds of information bases (like MySQL, PostgreSQL, Microsoft SQL Server), the greater part of them utilize SQL, so whenever you have SQL essentials added to your repertoire, you’ll have the option to work with any of them. Regardless of whether you’re wanting to do your investigation with any language like Python, at most organizations, odds are you’ll have to utilize SQL to recover the information you need from the organization’s information base. So it is very important to know the basic sql projects and incorporate these to succeed.

Importance of SQL

SQL permits clients to comprehend and break down the information bases, which incorporate the information fields in their tables. We should take any enormous association having heaps of information for instance. Information bases put together and store each one of that information, yet the data must be important and available. Here, SQL comes in – it turns into a stage related with both front-end and back-end information bases (PCs and information bases hung on workers).

... Read More

How to install and configure Visual Studio Code

In this tutorial, I want to show you how to install and configure Visual Studio Code. In Linux, the program can be installed in several ways, and I will describe three of them below.

Visual studio Code is very light weight IDE and can be configured for many programming languages. In this article, we will see how we can configure Visual Studio Code for frontend developers.

What is Visual Studio Code?

Visual Studio Code, or simply VS Code, is a free, popular and add-on text editor primarily designed for building and debugging modern web and cloud applications.

... Read More

PHP Code To Send Email Using MySQL Database

There are multiple ways you can send an email to customers retrieved from database. In this article I’ll explain the code that I wrote to bulk send an email to the list of customers retrieved from MySQL database.

PHP script to send an Email

Smallest code you can write to send an email using PHP is below

<?php
   $to = "recipient email";
   $subject = "Subject for the email";
   $body = "Hi test person, This is test email.";
   $header = "From: from@email";
 
   if ( mail($to, $subject, $body, $header)) {
      echo("Success");
   } else {
      echo("Failed");
   }
?>

Now lets extend this code to send the email to list of customers. We will retrieve the list of customers from MySQL databse.

... Read More

Best PHP IDE and PHP Text Editor For Web Developers 2021

IDE is a software package for programmers, which is used to build a wide range of applications. The acronym stands for (Integrated Development Environment).

A more technical definition would be “the IDE is an integrated development environment, which has the features of automatic suggestions, syntax linter, and bug fixes.

With an IDE, you can also make use of the debugging feature, test your code, compile the code etc.

We must clarify that it is possible that the same PHP IDE can work with different programming languages, a good example is Eclipse.

What is the difference between the IDE and the code Editor? Both of these tools are used to edit the code. A text editor is a tool which lets you write code, but might lack other features like debugging, testing, integrating with tools etc. On the other hand IDE comes with full feature that enables you to edit code, debug code, test code and integrate with third party tools.

... Read More

Top 5 Cross Platform Mobile Development Frameworks

In today’s world of technology, everyone is holding smartphone in hand. Smartphone are becoming vital part of our daily life routine. We often used different kind of applications through these devices to fulfill our daily life tasks. There are several mobile operating systems available but here are two most leading and useful mobile operating systems. One is android and the second one is iOS.

These operating systems have many pros and cons from user point of view and also from developer point of view. These platforms become issue when you have to develop an app for one platform and it doesn’t work in another. Thanks to cross platform mobile development frameworks that lets you create single application for multiple platforms.

Most frameworks have a built-in powerful modeling engine that can configure business fields, list views, and page layouts arbitrarily. Even business people who don’t know programming can quickly create intelligent and mobile enterprise applications.

... Read More

List of 18 Best IDE for C++ Developers Updated 2021

Choosing a best IDE for C++ is a tedious task, depending on features provided in the ‘integrated development environment,” we choose what IDE fit for us. Sometimes, when we switch to a different language, we hate to switch IDE because we became used to the previous IDE we used.

Here are some some of the best ide for c++. Please comment on which one you have been using and why you like one.

Best IDE For C++ Developers

These are the updated list of code editors and ides for c++ developers in 2021.

... Read More