Delete empty pages from pdf file in Python

By Yathartha Rana

In this tutorial, we will see how to delete the empty pages from a pdf file using Python. Step 1: Installing and Importing Libraries I am using the PyMuPDF library in this tutorial.... Read More

Home Screen Quick Actions in SwiftUI

By Saruque Ahamed Mollick

This tutorial is all about Quick Actions in SwiftUI. We all know what quick actions are, but we don’t know that those actions are known as Quick Actions in iOS. To make it cl.... Read More

Change the label color of a SwiftUI Toggle switch

By Samim

In this tutorial, we will see how to change the color of the label of a toggle switch in SwiftUI. We can simply change the label color of a TextField by applying the .foregroundCol.... Read More

How to reference equations in LaTeX document?

By Parvez Akhtar Pasha

In this tutorial, you will learn how to reference equations anywhere in a LaTeX document. Method 1 The simplest method to reference an equation in LaTeX is using \label and \ref co.... Read More

Change color of the toggle in SwiftUI

By Samim

In this tutorial, we will see how to change the toggle switch color in SwiftUI. We can customize the color of a toggle in SwiftUI to make it look better, and match our app style. W.... Read More

Tilde (~, ã) symbol in LaTeX

By Parvez Akhtar Pasha

In this tutorial, I will show you how to get the tilde symbol and use a tilde symbol over a letter in LaTeX. Short answer: Use $\sim$ command to use the tilde symbol as a symbol. U.... Read More

How to add the marker to the folium map in Python

By Pranit Sawant

In this tutorial, we will learn how to visualize data and add markers to the folium map in Python. What is Folium? Folium is a Python library. It helps us to visualize geospatial d.... Read More

ROC for Multiclass Classification in Python

By Yathartha Rana

This tutorial will explore how you can generate ROC for multiclass datasets in Python. As you know, ROC is generated for binary classification only, so we will extend the same conc.... Read More