This series of guides will give you a starting point of online trading. Starting with basic concepts and terminologies, we will walk you through the processes and guidelines for successful online trading. This page…
Conda is the package manager for Anaconda Python distribution.In this article we will explore following topics. What Python environments are. Why and when we need Python environments. How to create and manage Python environments using conda. Please follow the official documentation to install conda….
Python is a powerful dynamically typed, interpreted and object oriented high level programming language for Rapid Application Development. Python was created in 1991 by Guido van Rossum as a multi-purpose programming language with easy to use and simple syntax. What makes Python Good Following are some of the important…
What Is Python Virtual Environment and why we need it? Virtual environment helps to create a sandbox by isolating dependencies required by a specific python project. As a result each python project can have an isolated environment / sandbox…
In this series of articles, how-tos and step by step tutorials we will explore and learn following topics. Python Programming IoT Data Science AI Machine Learning Deep Learning BigData Data Analytics This article will…
Identity Properties / Identity Numbers Identity number for a mathematical operation is such a number that will have no impact on the result, identity numbers are also known as identity properties. In this article we will explore what identity numbers…
This article walks you through the process of deploying Java JAR or WARpackage file on linux operating system as systemd service. Please note that we will discuss the generic method of JAR / WAR deployment regardless of the underlaying framework or programming language…
How to setup High Availability Cluster of HAProxy using Keepalived? HAProxy (High Availability Proxy) serves it’s job well as a Reverse Proxy and TCP / HTTP load balancer. In HAProxy load balancing setup shown in above diagram the HAProxy is the…
HAProxy is an open source HTTP / TCP proxy solution to create highly availablesystems. HAProxy is widely used open source load balancer, In this article I will explain the basic setup of HAProxy 1.8.x on Ubuntu Linuxsystem. Installing HAProxy on Ubuntu Linux Server Please refer to Uninstalling…
Systems designed for High Availability (HA) shall be capable to route workload to another system if first one fails. keepalived is used to monitor the member nodes and switchover to a standby node in case of a on primary / master node. The primary…