Send Email using JavaScript – Complete App with Source Code

Send Email using JavaScript – Complete App with Source Code

Sending an email through your web app is some times a hectic process for beginners. In this article, I will walk you through a simple JavaScript task assignment app. The user can add the assignee name, email and task description and can simply send email to the assignee with task details using a library called…

10 Best Python Books for Absolute Beginners

10 Best Python Books for Absolute Beginners

Python is a powerful programming language. It is easy to learn. It has efficient high-level data structures with a simple and effective approach for object-oriented programming. Python is a general-purpose interpreted language. It can be used for machine learning, web development, data analysis, and stats. The knowledge imparted by a book and official documentation is…

Laravel 6 Stripe Payment Integration Tutorial
|

Laravel 6 Stripe Payment Integration Tutorial

Stripe is the best software platform for running an internet business. Stripe builds the most powerful and flexible tools for internet commerce. Whether you’re creating a subscription service, an on-demand marketplace, an e-commerce store, or a crowdfunding platform, Stripe’s meticulously designed APIs and unmatched functionality help you create the best possible product for your users….

OOP in PHP – Inheritance | Encapsulation | Abstraction | Polymorphism

OOP in PHP – Inheritance | Encapsulation | Abstraction | Polymorphism

Before starting this tutorial, please make sure that you have read the Part I of this series. Let’s move further. Here’s another important OOP concept. Inheritance Inheritance is one of the most important aspects of OOP. It allows a class to inherit members from another class. One of the main advantages of object-oriented programming is…

Learn Object Oriented Programming in PHP – OOP Tutorial

Learn Object Oriented Programming in PHP – OOP Tutorial

In this article series, we are going to learn Object-Oriented Programming (OOP) concepts in PHP. Pre-requisites In order to follow this article, you must have some basic knowledge of PHP. Your favorite text editor installed. You must have one of the web server solution stack installed like XAMPP, WAMP, MAMP or any other. Most of…

Building a Chatbot in Python using Flask – Tutorial

Building a Chatbot in Python using Flask – Tutorial

In this article, we will build a simple chatbot in Python programming language. The pre-requisites of this article is familiarity with the Flask microframework. Before getting into the development part, let’s see some basics first. What is a chatbot? A chatbot is a computer program which conducts the conversation between the user and a computer…

Creating GUI Application in Python – TKINTER Tutorial

Creating GUI Application in Python – TKINTER Tutorial

Graphical User Interface A GUI (pronounced like “gooey”) allows the user to interact with the operating system using graphical elements such as icons, buttons, dialog boxes, inputs, etc. The interactions with GUI are mostly done with the help of small windows called dialog boxes. One part of the user interface consists of hardware devices such…

Database Constraints in SQLite using Python Code by Querying

Database Constraints in SQLite using Python Code by Querying

This article is the continuation of the previous article in which we have seen how to create and query a simple database. In this article, we will learn the following: Database Constraints in SQLite (PRIMARY KEY, NOT NULL, UNIQUE, FOREIGN KEY) Querying Database We will follow the following relational schema to create the database. Create…