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 […]
Configure NGINX to Run Django App in a Sub Path
Sometimes we need to run our Django project in sub path of parent URL ( www.yourmainurl.com/yourproject ) and when I have this situation I researched a lot and finally found my solution. Here I have tried to solve your problem. In this post we will learn how to configure NGINX to run your Django project. […]
Generate Setup File for Windows Application in visual Studio 2022
This is the most significant instruction for making a Setup File (.exe) from a Windows Forms application. It is simple to install on any Windows PC. It is only compatible with the Windows operating system. Now I’ll convert these Windows Forms applications to Setup Files. To build a setup file from a Windows Forms application, […]
How to Connect With MySQL Database in Visual Studio 2022
In this post we will learn how to connect with MySQL database in Visual Studio 2022. To connect with MySQL we have to install MySql.Data package from NuGet Packages. First Go to Tools Menu and select NuGet Package Manager > Manage NuGet Packages for Solutions.. Then Go to Browse tab and in the search box […]
How to Enable Report Viewer in Visual Studio 2022
In this post we will learn how to enable Report Viewer in visual studio 2022. To enable RDLC you have to install 2 extensions: Microsoft RDLC Designer Microsoft Reporting Service Project Go to the Extensions menu and select Manage Extensions. To install package search RDLC in Manage Extensions. This is going to be our first […]