Blog

Error: 413 “Request Entity Too Large” in Nginx

Sometime this happening because your nginx server will not enable you to upload a file that is greater than the size specified in the nginx config file. To fix that, you’ll need to change your nginx configuration. Remove/modify your nginx config file by following the steps. Step 1. Go to the config location and open it […]

xlwings – Extract the contents of the excel text box 

xlwings (Open Source) is a BSD-licensed Python library that makes it easy to call Python from Excel and vice versa. Numpy arrays and Pandas Series/DataFrames are fully supported. xlwings-powered workbooks are easy to distribute and work on Windows and Mac. xlwings is only compatible with Windows and macOS because it requires the installation of Excel. UDFs (User Defined Functions) are presently not supported […]

Docker overview

Docker is a software platform for fast developing, testing, and deploying applications. Docker allows you to decouple your apps from your infrastructure, allowing you to quickly deploy software. You can manage your infrastructure the same way you control your applications with Docker. Docker use OS-level virtualization to deliver software in packages called containers. It includes all of […]

Part 2 : NumPy Slicing and Stacking Arrays

If you don’t know what is NumPy array then please visit first our post NumPy Basic Array Operations. In this post we will continue our numpy course. In this post we will learn slicing and indexing, iterating, stacking and splitting array. Slicing in Python is the process of moving elements from one index to another. […]

Part -1: NumPy Basic Array Operations

The NumPy array is a data structure for storing and accessing multidimensional arrays (also known as tensors) that allows for a wide range of scientific computations. Just like python list we can access element from NumPy array. If you dont know what is NumPy then visit our NumPy: The absolute basics for beginners post. In […]

NumPy: The absolute basics for beginners

We are going to start our new course for NumPy. In this course we will learn what is NumPy and how to use NumPy. NumPy (Numerical Python) is an open source Python library that’s used in almost every field of science and engineering. It’s the universal standard for working with numerical data in Python, and […]

Scroll to top