Round specific corners in SwiftUI

By Samim

In this tutorial, we will see how we can round specific corners in SwiftUI. We can create soft edges, and unique shapes, or focus attention on certain parts of the interface by rou.... Read More

Check whether kth bit is set or not in C++

By Kunal Kamble

Hello, friends in this tutorial we will write a program to check the kth bit of a number is set or in C++. We have a number say N we will check if the kth bit of the number is set .... Read More

Gradient Animation in SwiftUI

By shagrafnasheet

In this SwiftUI tutorial, we’ll learn how to make a gradient animation background in SwiftUI. SwiftUI provides us LinearGradient which helps us create a gradient background q.... Read More

A Comprehensive Guide to Conv2D Class in Keras

By Ripan Purkait

Conv2D is a 2-dimensional convolutional layer provided by the TensorFlow Keras API. It is one of the fundamental building blocks of Convolutional Neural Networks (CNNs). The Conv2D.... Read More

Transition animation between views in SwiftUI

By shagrafnasheet

In this SwiftUI tutorial, we’ll learn how we can change views with a transition animation. The simplest way of doing this is using withAnimation closure. We can call any view.... Read More

Select rows from Pandas Dataframe Based On Column Values

By Nataraj Maddala

In this tutorial, we are going to learn about selecting rows from Pandas Dataframe based on column values. Firstly, we need to import pandas module and create a dataframe. So, make.... Read More

How to Change Learning Rate in Keras

By Ripan Purkait

In deep learning, the learning rate is an important hyperparameter that controls the weights of a neural network during the training process. It helps to control the speed or rate .... Read More

Detect Screen size or resolution in SwiftUI

By shagrafnasheet

In this SwiftUI tutorial, we’ll learn how to detect the screen size or resolution in SwiftUI. We can use UIScreen.main.bounds to detect the Screen Size or resolution. We can .... Read More