Python

Python Machine Learning Library: Scikit-Learn

In this article, I will discuss Python Machine Learning Library: Scikit-Learn. In short, Scikit-learn is a popular open-source machine learning library for Python. Above all, it provides a range of algorithms and tools for several machine learning tasks. For instance, it has functionalities for classification, regression, clustering, dimensionality reduction, model selection, and pre-processing. Furthermore, Scikit-learn …

MongoDB

Some Examples of MongoDB Documents

This article demonstrates Some Examples of MongoDB Documents. Since MongoDB is not a relational database system, a MongoDB database doesn’t have tables with rows and columns as usual. Rather, a MongoDB database contains collections. Further, a collection comprises of documents. The following list provides Some Examples of MongoDB Documents. At first, consider the following User …

MongoDB

Working with MongoDB Compass

In this article on Working with MongoDB Compass, I will discuss MongoDB Compass which is a GUI client for managing the MongoDB database. MongoDB Compass Basically, the Compass is a simple and easy-to-use GUI that you can use to visualize and explore the MongoDB database. MongoDB Compass is used for database administration and querying. Furthermore, …

PHP

Deleting Multiple Records with mysqli in PHP Using Form Input

Today I will discuss an example of Deleting Multiple Records with mysqli in PHP Using Form Input. Suppose we have a database table and we want to allow the user to delete some or all of the records. Since user will access the application through a web interface, the delete option should be available on …

Django

Installing Django on Windows

In this article I will discuss Installing Django on Windows. Django is a python based framework for web development. In order to get more details on Django framework as well as its features and benefits, read this article. (https://www.programmingempire.com/introduction-to-django-framework-and-its-features/) Since Django is a python based framework, so first you need to ensure that Python is …

PHP

Working with phpMyAdmin – Creating Users and Assigning Privileges

In this article on Working with phpMyAdmin – Creating Users and Assigning Privileges, I will explain how to create a user for a database and how to assign privileges to that user. Also developed in PHP, phpMyAdmin is a tool that allows the users to manage MySQL database. Basically, it is a free software tool …

SQLite

Understanding SQLite Database With Examples

In this article on Understanding SQLite Database With Examples, I will explain what is SQLite and when you should use it. Here you will also find some examples of using SQLite. When you need to use a light weight, cross-platform, and open-source database, SQLite is the best choice. It is a serverless database. In other …

Django

Introduction to Django Framework and its Features

In this article on Introduction to Django Framework and its Features, I will explain the Python Web Development Framework Django. Also, I will discuss why this framework is preferred by web developers and its distinguishing features. Basically, Django is a python based framework that enables you to build web applications fast and in a simpler …