Principal components regression in ML – Python

By Saumya

Learn how to perform principal components regression in Machine learning using Python. PCR is used to reduce dimensions in a dataset by projecting them in lower dimension space and.... Read More

k Medoids Clustering in Python

By Saumya

In this tutorial, we will learn how to perform K medoids clustering in Python. First, let’s import the required libraries. import numpy as np from scipy.spatial.distance impo.... Read More

Color Matching Game with Tkinter in Python

By Om Tejaswini

This article is about color matching game built using the Tkinter library in Python. Overview of the game: In this game, players have to enter the color of the text displayed not t.... Read More

Upload or update App from Xcode beta to App Store

By Saruque Ahamed Mollick

Here, I will share a trick to remove the restriction of Apple that prevents you from uploading or updating apps to App store from Xcode beta versions. One of my reddit mates just s.... Read More

Button Command with parameter in Tkinter

By Saruque Ahamed Mollick

In this tutorial, I will show you how to pass parameters or arguments in the Tkinter button command. We can do this in two different ways. Using lambda function. Using Nested funct.... Read More

This version of Xcode isn’t supported in this version of macOS – Updated macOS Sequoia

By Saruque Ahamed Mollick

Hello, just a few hours back I updated my macOS 14 to macOS Sequoia Developer Beta. Everything looked so charming and nice, I tried the new features of macOS 15. I have also update.... Read More

How to find machine epsilon in python

By Charan Avula

In this tutorial, we are going to learn how to find the machine epsilon in Python. In numerical computations, it’s crucial to understand the precision limits of your calculat.... Read More

Sum of all elements in an ArrayList in Java

By VADLA

Hey, fellow programmers ! In this tutorial , You are going to learn the Java program to find the Sum of all elements in an ArrayList  Sum of all elements in an ArrayList in Java T.... Read More