std::next_permutation and std::prev_permutation in C++

By Vidhi Jain

Let’s learn about std::next_permutation and  std::prev_permutation in C++. Let’s first know about permutations: We know that a permutation is the n! possible arrangeme.... Read More

How to Build a QR Code Scanner in SwiftUI

By Saruque Ahamed Mollick

In this tutorial, I will show you how to build a QR code scanner in SwiftUI. Will start with a simple and basic QR code scanner. There will be no button. On opening the App the cam.... Read More

Page numbering – styles, suppress page numbering in LaTeX

By Parvez Akhtar Pasha

In this tutorial, you will learn all about page numbering, how to change page number style, use multiple number styles in the same document, and how to suppress page numbering for .... Read More

Hide the navigation back button in SwiftUI

By Samim

In this tutorial, we will see how to hide the navigation back button in SwiftUI. SwiftUI provides a modifier called navigationBarBackButtonHidden(), by specifying the boolean value.... Read More

App crashed – Add NSCameraUsageDescription key in info.plist

By Saruque Ahamed Mollick

This morning I found another error and said: “This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app’s Info.pli.... Read More

How to Extract Subviews in SwiftUI

By Samim

In this tutorial, we will see how to extract subviews in SwiftUI. We can extract subviews by creating separate views and then using them within a parent view. This helps us organiz.... Read More

World Cup cricket winning prediction using Machine learning in Python

By Pranit Sawant

In this tutorial, we will learn about how to use machine learning to predict the winner of any tournament. In this article, we will be particularly focusing on the cricket World Cu.... Read More

Convert a List of Integers to List of String in Java

By Saurabh Salunkhe

In this tutorial, we will learn how to convert a list of integers to list of string in Java. Converting the following list of Integers to list of String List of Integer : ( 20, 27,.... Read More

Related Posts