PinnedHow NextJS is better for SEOWhen you search anything on google or any other search engine it crawls on different websites and checks content related to that and shows us result but here comes the issue with regular React JS applications. What’s wrong with regular React JS? React JS uses CSR How CSR works? In…Nextjs3 min readNextjs3 min read
Nov 2, 2021How to create project in DjangoDjango is a web framework of python using which we can create web apps. Instead of going into the theory part, I will show you how you can create a Django project from scratch. Let's create a new directory named djTut and in this directory create a virtual environment for…Django2 min readDjango2 min read
Published inPython in Plain English·Oct 24, 2021Data Structures in Python: TreeTill now we studied linear data structures in Python. Today, we will look at hierarchical data structure in Python i.e. Trees. In the above figure, where do you think the root of the tree is? Obviously! to the bottom of the tree. …Tree Data Structures4 min readTree Data Structures4 min read
Oct 23, 2021Data Structures in Python: Doubly Linked listFirst of all, if you haven’t read my linked list tutorial you must and then read this. From our linked list tutorial you know a linked list is a collection of nodes and each node contains data and the address of the next node. …Linked Lists4 min readLinked Lists4 min read
Oct 22, 2021Data Structures in Python: Hash TableScroll down to bottom to checkout previous tutorials Hash Table is a type of data structure where the address of data elements .i.e indices of data elements are generated via a hash function. In Hash Table, elements are stored as key-value pairs but the key is generated through a hash…Dictionary In Python3 min readDictionary In Python3 min read
Oct 20, 2021Data Structures in Python: Custom StackBefore going ahead with this tutorial if you don’t know what stack is and how we can use a list as a stack you must go through this lecture. In today’s tutorial, I will be creating a stack class and creating methods to append and pop from Stack. Add value to Stack First of…Stack In Python2 min readStack In Python2 min read
Oct 19, 2021Data Structures in Python: DequeueA Dequeue is simply a double-ended Queue. If you don’t know what a Queue is then you must go through the Queue tutorial. With double-ended what I really mean is that we can append elements from either end (start and end) and remove them from either end (start and end). …Dequeue2 min readDequeue2 min read
Oct 18, 2021Data Structures in Python: QueueThe above figure shows a queue of people waiting to get the item. So, who do you think will get the item first? Of course, the one who came first. That means the person who came first will leave first. Now, what if I told you this represents a data…Queue Data Structure2 min readQueue Data Structure2 min read
Oct 17, 2021Data Structures in Python: StackThe above figure is a good example of stack data structure in Python. Suppose stones arranged on top of each other are elements of stack now the last stone added is the topmost one and if we want to remove a stone we will remove the last one added that…Stack In Python2 min readStack In Python2 min read
Oct 16, 2021Data Structures in Python: LinkedListBefore starting today’s tutorial if you to know what are previous topics before the linked list that I have taught in Data Structures scroll down to the bottom. Links are available there A linked list is an ordered collection of objects which are connected via links. Each element of the…Singly Linked List10 min readSingly Linked List10 min read