When you are running a web server it is really important to keep the track of ip from which you are getting most number of hits. We will see How to get most frequent ip address in your logs How to get most frequent ip address in your logsĀ Such tracking is important when there
Author: Gaurav Yadav
What is blue green deployment.
If you are around devops people or people who are working with deployments in your industry. You must have heard of the name blue green deployment. Most of the companies in the world use this technique to get the least down time for their respective products. This deployment is old but still one of the
Difference between pure and impure functions.
What are pure and impure functions? Pure functions: These are functions which are sure to provide exact result when the same arguments are passed. For having a function as pure function if must not have any external variable, data store call, ajax request or any other global variables. This means that you can be completely
Algorithms: Binary Search Tree and its functionality in python
Back in the algorithms section with python we are going to see how we can code Binary Search Tree and its functionality in python. Binary search tree are binary tree where the left child is less than root and right child is greater than root. We will be performing insertion, searching, traversal, min and other
Terminal in browser: Building a Javascript Terminal in your website.
Javascript Console is very useful when it comes to debugging webpages. Normally you can see it when you right click on the webpage and inspect the webpage. Here for making a JS console and also to make it run your commands we will be using a Javascript library. Here we will be making a terminal
Google search URL parameters and what do they mean?
When it comes to search online it always comes to google if you don’t think much about tracking and all. And why should not use this. Google provides the best result for every search. So lets see what are the different query parameters used in google while searching and how you can use them. Lets
Algorithms: Left view of a binary tree using python.
In the algorithm section I am here going to share how to get the left view of the binary tree. For that you must know what is binary tree. Algorithms: Left view of a binary tree. Binary tree are the tree where one node can have only two child and cannot have more than two.
Picks from Quora- What do you think are the ‘7 wonders’ of the coding world?
Read Carlos Matias La Borde's answer to What do you think are the '7 wonders' of the coding world? on Quora
Algorithms: Mirror a Binary tree using python
In this article we are going to see how we can mirror a binary tree using python. Lets see what are binary tree Algorithms: Mirror a Binary tree using python Binary tree are the tree where one node can have only two child and cannot have more than two. Traversal means visiting all the nodes
Algorithms: Coding a linked list in python
So next in the algorithm section we are going to write a linked list using python. If you don’t know what is linked list you can read it here. Algorithms: Coding a linked list in python A linked list is a linear collection of data elements, called nodes, each pointing to the next node by