Introduction to Stacks and QueuesStack A stack is an ordered list (Data Structure) in which all insertion and deletion are done at one end. It is a First In Last Out (FILO). Top is a pointer pointing to the top most element of the stack. Applications of Stack Recursion Post fix ev...Jul 11, 2021·2 min read·109
Working with Hashnode RSS feed in PythonIn article, we will be seeing how extract feed and posts details using RSS feed for a Hashnode blog. Although we are going to use it for blogs on [Hashnode] it can be used for other feeds as well What is RSS? RSS stands for Rich Site Summary or Reall...Dec 28, 2020·5 min read·396
Concatenating PDF files using PythonSometimes we have to deal with multiple PDF files and I've seen often that people want if pdfs can be merged or concatenated as one single file. We can do that with Python thanks to the PyPDF2 library, which is a very handy tool when it comes to work...Dec 22, 2020·2 min read·434
Building a Command Line File Downloader in PythonPython is one of the most popular general purpose programming language with a wide range of use cases from general coding to complex fields like AI. One of the reason for such popularity of python as a programming language is the availablility of man...Dec 22, 2020·5 min read·599
Neural Style TranferWhat is Neural Style Transfer? It is a process of applying a new artistic style on an existing original image by using a pre-trained neural network, usually a convolutional neural network. e.g, AlexNet, VGG19, SqueezeNet etc. How does it works? Take...Dec 16, 2020·6 min read·437
Introduction to Generative-Adversarial Networks(GANs) using PyTorchWhat are GANs? It stands for Generative-Adversarial Networks. Consists of two neural networks contesting against each other. These GANs can be used to generate real looking pictures and videos of virtually anything. Two contesting neural networks are...Dec 15, 2020·5 min read·196