List of Mathematical Algorithms Lagrange’s Four Squares Theorem In this article, we will discus Lagrange’s four square theorem in detail with examples and an algorithm to verify it.
List of Mathematical Algorithms Mersenne prime numbers When 2^n -1 is prime, it is said to be a Mersenne prime. In this article, we have explored this concept of Mersenne prime numbers in depth along with algorithms + implementations to find Mersenne prime numbers.
Linux How Terminals display color? Terminals display color using escape sequences(ANSI escape codes for our case).If an escape character(\033) is receded by a byte in the range 0x40-0x5F, then the interpretation of the escape sequence is delegated to the C1 control code.
Machine Learning (ML) Gradient Ascent Gradient Ascent as a concept transcends machine learning. It is the reverse of Gradient Descent, another common concept used in machine learning. Gradient Ascent (resp. Descent) is an iterative optimization algorithm used for finding a local maximum (resp. minimum) of a function.
Culture Mingyang Deng Mingyang Deng is one of the leading Competitive Programmers from China. He is the Youngest Programmer to become Legendary Grandmaster in CodeForces at the age 16 and currently, holds rank 5 worldwide on the platform.
List of Interview Questions BERT Interview Questions (NLP) In this article, we will go over various questions that cover the fundamentals and inner workings of the BERT model.
HTML SVG in HTML In this article, we will learn about the SVG tag in HTML. SVG stands for Scalable Vector Graphics and it is one of the modern ways of displaying images in websites and applications just like displaying PNG, GIF, and JPG.
Culture How Uber got hacked? [Complete Report] In this article, we have explored how Uber got hacked using MFA and what can be done to prevent such hacking attacks in future. Any company can fall for this attack.
TensorFlow No matching distribution found for TensorFlow using pip [SOLVED] In this article, we have presented the reason behind the error "No matching distribution found for TensorFlow using pip" along with 3 approaches to fix it.
System Design Probnik: Netflix's innovation testing framework Netflix is technologically one of leading Software Companies in the World. They serve their customized homepage in milliseconds, no server outrage can bring Netflix down and much more. In this article, we explored Netflix's approach towards testing framework named Probnik.
Algorithms Greedy Algorithm vs Dynamic programming In this article, we will discuss greedy methods vs dynamic programming. Both of them are used for optimization of a given problem. Optimization of a problem is finding the best solution from a set of solutions.
Algorithms Time and Space Complexity of Prim’s algorithm In this article, we will learn more about Prim's algorithm and analyze its complexity for different cases and implementation approaches.
Culture Why Adobe acquired Figma for 20 Billion Dollars? Adobe acquired Figma for 20 Billion Dollars but why Adobe paid a huge price during the recession?
Machine Learning (ML) Out-of-Bag Error in Random Forest [with example] In this article, we have explored Out-of-Bag Error in Random Forest with an numeric example and sample implementation to plot Out-of-Bag Error.
C Programming List of Standard Header files in C C programming language offers 25 standard header files (which is supported by default).
Python Try Else in Python [Explained with Exception Types] The “try” and “else” statements are used in Python for flow control. An Exception, also known as run time error, is an event which occurs during the execution of a Python program.
Python Download files from Google Drive using Python You will create a python script to download files from and upload files to Google drive. After you have created the script, you can integrate it with your web applications and APIs to download files from and upload files to Google drive.
Algorithms Interpolation Search [EXPLAINED] In this article, we have explained the concept of Interpolation Search and analyzed the performance of interpolation search in terms of time and space complexity.
Machine Learning (ML) XNet architecture: X-Ray image segmentation Medical image processing is an important application in Computer Vision,requires segmentation of images into body parts. Joseph Bullock and his partners in Durham University proposed a neuron network called XNet which is suitable for this task.
System Design How Spotify went down after an outage? On March 8, 2022, Spotify faced an outage and Spotify went down for 2 hours. Let us see what happened and what concepts we can learn from this outage.
backtracking Iterative Backtracking In this article, we will be exploring the idea of backtracking with the help of iteration (Iterative Backtracking) along with example as well. The Time and Space Complexity will be discussed at the end of the article.
List of Mathematical Algorithms Andrica's conjecture Andrica's conjecture states that for every gap between two consecutive square roots of prime numbers, the value of it is less than 1.
List of Interview Questions 70 Spring Interview Questions and Answers Spring is a Java based framework. It was developed by Rod Johnson. The first version of spring framework was released by Rod Johnson. In this article, we have covered 70 Spring Interview Questions and Answers.
Machine Learning (ML) Word Embeddings: GloVe and Word2Vec Word Embeddings correlates the likeness of the meaning of words with their relative similarity and represent them numerically as a vector.
Machine Learning (ML) Feature Selector Using LASSO A technique for reducing the dimensionality of machine learning datasets is the Feature Selector. The selection process of the Feature Selector is based on a logically accurate measurement that determines the importance of each feature present in the data.