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.
Algorithms Generate all palindromes less than N In this problem, we will see how to generate palindromic number in a given range efficiently by exploring the patterns of palindromes.
Machine Learning (ML) Seq2seq: Encoder-Decoder Sequence to Sequence Model Explanation In Deep learning, we all know that Recurrent Neuron Network solves time series data. Sequence to Sequence (or Seq2Seq for short) is a kind of model that was born to solve "Many to many" problem.
Culture Should developers have access to production? In this article, we explore if developers should have access to production and the solution that is used in real life.
Linux Use astyle to format C++ code In this article, we have presented how to use astyle tool to format C/ C++ code files and set your custom code format style.
Algorithms Scramble String problem We will be given two strings a, and b we have to check whether one string is scrambled version of other string or not.
Algorithms Biconnected graph A biconnected graph is a graph that is connected and has no articulation points.